You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

@nolyfill/object-keys

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nolyfill/object-keys - npm Package Compare versions

Comparing version

to
1.0.22

entry.js

6

./index.js
'use strict';
const { makeEsShim } = require('@nolyfill/shared');
const impl = Object.keys;
const bound = impl;
makeEsShim(bound, impl);
module.exports = bound;
module.exports = require('./entry.js').index();
'use strict';
module.exports = Object.keys;
module.exports = require('./entry.js').implementation;
'use strict';
const { makeEsShim } = require('@nolyfill/shared');
const impl = Object.keys;
const bound = impl;
makeEsShim(bound, impl);
module.exports = bound;
module.exports = require('./entry.js').index();
{
"name": "@nolyfill/object-keys",
"version": "1.0.21",
"version": "1.0.22",
"repository": {
"type": "git",
"url": "https://github.com/SukkaW/nolyfill",
"directory": "packages/object-keys"
"directory": "packages/generated/object-keys"
},

@@ -9,0 +9,0 @@ "main": "./index.js",

'use strict';
module.exports = () => Object.keys;
module.exports = require('./entry.js').polyfill;
'use strict';
module.exports = () => Object.keys;
module.exports = require('./entry.js').shim;