Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

635055 Views

Latest files of /cody/Khushigupta8/Hotel-Management-Webpage/node_modules/object-inspect

example/ cody/Khushigupta8/Hotel-Management-Webpage/node_modules/object-inspect/example/
4 Items
  • fn.js
  • all.js
  • circular.js
  • inspect.js
  • test/ cody/Khushigupta8/Hotel-Management-Webpage/node_modules/object-inspect/test/
    19 Items
  • global.js
  • bigint.js
  • lowbyte.js
  • fn.js
  • element.js
  • values.js
  • err.js
  • quoteStyle.js
  • .github/ cody/Khushigupta8/Hotel-Management-Webpage/node_modules/object-inspect/.github/
    1 Items
  • FUNDING.yml
  • readme.markdown cody/Khushigupta8/Hotel-Management-Webpage/node_modules/object-inspect/readme.markdown
    208 Views
    0 Comments
    Media file
    CHANGELOG.md cody/Khushigupta8/Hotel-Management-Webpage/node_modules/object-inspect/CHANGELOG.md
    132 Views
    0 Comments
    # Changelog

    All notable changes to this project will be documented in this file.

    The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
    and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

    ## [v1.13.1](https://github.com/inspect-js/object-inspect/compare/v1.13.0...v1.13.1) - 2023-10-19
    package-support.json cody/Khushigupta8/Hotel-Management-Webpage/node_modules/object-inspect/package-support.json
    100 Views
    0 Comments
    {
    "versions": [
    {
    "version": "*",
    "target": {
    "node": "all"
    },
    "response": {
    test-core-js.js cody/Khushigupta8/Hotel-Management-Webpage/node_modules/object-inspect/test-core-js.js
    121 Views
    0 Comments
    'use strict';

    require('core-js');

    var inspect = require('./');
    var test = require('tape');

    test('Maps', function (t) {
    index.js cody/Khushigupta8/Hotel-Management-Webpage/node_modules/object-inspect/index.js
    127 Views
    0 Comments
    var hasMap = typeof Map === 'function' && Map.prototype;
    var mapSizeDescriptor = Object.getOwnPropertyDescriptor && hasMap ? Object.getOwnPropertyDescriptor(Map.prototype, 'size') : null;
    var mapSize = hasMap && mapSizeDescriptor && typeof mapSizeDescriptor.get === 'function' ? mapSizeDescriptor.get : null;
    var mapForEach = hasMap && Map.prototype.forEach;
    var hasSet = typeof Set === 'function' && Set.prototype;
    var setSizeDescriptor = Object.getOwnPropertyDescriptor && hasSet ? Object.getOwnPropertyDescrip
    LICENSE cody/Khushigupta8/Hotel-Management-Webpage/node_modules/object-inspect/LICENSE
    189 Views
    0 Comments
    Media file
    package.json cody/Khushigupta8/Hotel-Management-Webpage/node_modules/object-inspect/package.json
    108 Views
    0 Comments
    {
    "name": "object-inspect",
    "version": "1.13.1",
    "description": "string representations of objects in node and the browser",
    "main": "index.js",
    "sideEffects": false,
    "devDependencies": {
    "@ljharb/eslint-config": "^21.1.0",
    util.inspect.js cody/Khushigupta8/Hotel-Management-Webpage/node_modules/object-inspect/util.inspect.js
    124 Views
    0 Comments
    module.exports = require('util').inspect;