@nolyfill/object.entries
Advanced tools
Comparing version 1.0.21 to 1.0.22
'use strict'; | ||
const { makeEsShim } = require('@nolyfill/shared'); | ||
const impl = Object.entries; | ||
const bound = impl; | ||
makeEsShim(bound, impl); | ||
module.exports = bound; | ||
module.exports = require('./entry.js').index(); |
'use strict'; | ||
module.exports = Object.entries; | ||
module.exports = require('./entry.js').implementation; |
'use strict'; | ||
const { makeEsShim } = require('@nolyfill/shared'); | ||
const impl = Object.entries; | ||
const bound = impl; | ||
makeEsShim(bound, impl); | ||
module.exports = bound; | ||
module.exports = require('./entry.js').index(); |
{ | ||
"name": "@nolyfill/object.entries", | ||
"version": "1.0.21", | ||
"version": "1.0.22", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/SukkaW/nolyfill", | ||
"directory": "packages/object.entries" | ||
"directory": "packages/generated/object.entries" | ||
}, | ||
@@ -9,0 +9,0 @@ "main": "./index.js", |
'use strict'; | ||
module.exports = () => Object.entries; | ||
module.exports = require('./entry.js').polyfill; |
'use strict'; | ||
module.exports = () => Object.entries; | ||
module.exports = require('./entry.js').shim; |
2102
9
15