@nolyfill/object.entries
Advanced tools
Comparing version 1.0.11 to 1.0.12
'use strict'; | ||
const { makeEsShim } = require('@nolyfill/shared'); | ||
const impl = Object.entries; | ||
module.exports = impl; | ||
module.exports.implementation = impl; | ||
module.exports.getPolyfill = () => impl; | ||
module.exports.shim = () => impl; | ||
const bound = impl; | ||
makeEsShim(bound, impl); | ||
module.exports = bound; |
'use strict'; | ||
const { makeEsShim } = require('@nolyfill/shared'); | ||
const impl = Object.entries; | ||
module.exports = impl; | ||
module.exports.implementation = impl; | ||
module.exports.getPolyfill = () => impl; | ||
module.exports.shim = () => impl; | ||
const bound = impl; | ||
makeEsShim(bound, impl); | ||
module.exports = bound; |
{ | ||
"name": "@nolyfill/object.entries", | ||
"version": "1.0.11", | ||
"version": "1.0.12", | ||
"main": "./index.js", | ||
@@ -9,3 +9,5 @@ "license": "MIT", | ||
], | ||
"dependencies": {}, | ||
"dependencies": { | ||
"@nolyfill/shared": "1.0.12" | ||
}, | ||
"engines": { | ||
@@ -12,0 +14,0 @@ "node": ">=12.4.0" |
1822
1
+ Added@nolyfill/shared@1.0.12
+ Added@nolyfill/shared@1.0.12(transitive)