@nolyfill/string.prototype.matchall
Advanced tools
Comparing version 1.0.11 to 1.0.12
'use strict'; | ||
const { uncurryThis } = require('@nolyfill/shared'); | ||
const { uncurryThis, makeEsShim } = require('@nolyfill/shared'); | ||
const impl = String.prototype.matchAll; | ||
module.exports = uncurryThis(impl); | ||
module.exports.implementation = impl; | ||
module.exports.getPolyfill = () => impl; | ||
module.exports.shim = () => impl; | ||
const bound = uncurryThis(impl); | ||
makeEsShim(bound, impl); | ||
module.exports = bound; |
'use strict'; | ||
const { uncurryThis } = require('@nolyfill/shared'); | ||
const { uncurryThis, makeEsShim } = require('@nolyfill/shared'); | ||
const impl = String.prototype.matchAll; | ||
module.exports = uncurryThis(impl); | ||
module.exports.implementation = impl; | ||
module.exports.getPolyfill = () => impl; | ||
module.exports.shim = () => impl; | ||
const bound = uncurryThis(impl); | ||
makeEsShim(bound, impl); | ||
module.exports = bound; |
{ | ||
"name": "@nolyfill/string.prototype.matchall", | ||
"version": "1.0.11", | ||
"version": "1.0.12", | ||
"main": "./index.js", | ||
@@ -10,3 +10,3 @@ "license": "MIT", | ||
"dependencies": { | ||
"@nolyfill/shared": "1.0.11" | ||
"@nolyfill/shared": "1.0.12" | ||
}, | ||
@@ -13,0 +13,0 @@ "engines": { |
1940
20
+ Added@nolyfill/shared@1.0.12(transitive)
- Removed@nolyfill/shared@1.0.11(transitive)
Updated@nolyfill/shared@1.0.12