Socket
Socket
Sign inDemoInstall

string.prototype.split

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

string.prototype.split - npm Package Compare versions

Comparing version 1.0.6 to 1.0.7

12

CHANGELOG.md

@@ -8,2 +8,14 @@ # Changelog

## [v1.0.7](https://github.com/es-shims/String.prototype.split/compare/v1.0.6...v1.0.7) - 2022-11-07
### Commits
- [meta] use `npmignore` to autogenerate an npmignore file [`8937c2c`](https://github.com/es-shims/String.prototype.split/commit/8937c2c7d5270ae44008f303c4a5072adb24aeeb)
- [actions] update rebase action to use reusable workflow [`faadd00`](https://github.com/es-shims/String.prototype.split/commit/faadd0060f25673326e43343f99d192bdc0e8b47)
- [Deps] update `es-abstract`, `get-intrinsic` [`f4238bc`](https://github.com/es-shims/String.prototype.split/commit/f4238bc4f0887a6d34389e7d920e4137d0b47555)
- [Deps] update `define-properties`, `es-abstract`, `regexp.prototype.flags` [`6ae258a`](https://github.com/es-shims/String.prototype.split/commit/6ae258a5927acb9c176f7983c2ca27b8f3e16c27)
- [Dev Deps] update `aud`, `tape` [`c23a919`](https://github.com/es-shims/String.prototype.split/commit/c23a919b717efec7e524e147532cdf9f1f042ef7)
- [Dev Deps] update `@ljharb/eslint-config`, `functions-have-names` [`c351cf4`](https://github.com/es-shims/String.prototype.split/commit/c351cf46bd13f72645a7745dd89281d3774f8e7b)
- [Fix] main entry point is named "split" [`bb8f836`](https://github.com/es-shims/String.prototype.split/commit/bb8f8361dbb9571bfcf775a43f39cfe47cbdf815)
## [v1.0.6](https://github.com/es-shims/String.prototype.split/compare/v1.0.5...v1.0.6) - 2022-04-08

@@ -10,0 +22,0 @@

2

implementation-broken-captures.js

@@ -6,3 +6,3 @@ 'use strict';

var callBound = require('call-bind/callBound');
var ToUint32 = require('es-abstract/2021/ToUint32');
var ToUint32 = require('es-abstract/2022/ToUint32');
var regexFlags = require('regexp.prototype.flags');

@@ -9,0 +9,0 @@ var isRegex = require('is-regex');

@@ -5,3 +5,3 @@ 'use strict';

var callBind = require('call-bind');
var RequireObjectCoercible = require('es-abstract/2021/RequireObjectCoercible');
var RequireObjectCoercible = require('es-abstract/2022/RequireObjectCoercible');

@@ -13,3 +13,3 @@ var implementation = require('./implementation');

var bound = callBind(getPolyfill());
var boundMethod = function method(receiver, separator, limit) {
var boundMethod = function split(receiver, separator, limit) {
RequireObjectCoercible(receiver);

@@ -16,0 +16,0 @@ return bound(receiver, separator, limit);

{
"name": "string.prototype.split",
"version": "1.0.6",
"version": "1.0.7",
"description": "An ES spec-compliant `String.prototype.split` shim/polyfill/replacement that works as far down as ES3",

@@ -22,2 +22,3 @@ "main": "index.js",

"scripts": {
"prepack": "npmignore --auto --commentLines=autogenerated",
"prepublish": "not-in-publish || npm run prepublishOnly",

@@ -56,19 +57,21 @@ "prepublishOnly": "safe-publish-latest",

"call-bind": "^1.0.2",
"define-properties": "^1.1.3",
"es-abstract": "^1.19.2",
"get-intrinsic": "^1.1.1",
"define-properties": "^1.1.4",
"es-abstract": "^1.20.4",
"get-intrinsic": "^1.1.3",
"is-regex": "^1.1.4",
"regexp.prototype.flags": "^1.4.1"
"regexp.prototype.flags": "^1.4.3"
},
"devDependencies": {
"@es-shims/api": "^2.2.3",
"@ljharb/eslint-config": "^20.2.3",
"aud": "^2.0.0",
"@ljharb/eslint-config": "^21.0.0",
"aud": "^2.0.1",
"auto-changelog": "^2.4.0",
"eslint": "=8.8.0",
"functions-have-names": "^1.2.2",
"functions-have-names": "^1.2.3",
"has-strict-mode": "^1.0.1",
"in-publish": "^2.0.1",
"npmignore": "^0.3.0",
"nyc": "^10.3.2",
"safe-publish-latest": "^2.0.0",
"tape": "^5.5.3"
"tape": "^5.6.1"
},

@@ -85,3 +88,8 @@ "auto-changelog": {

"files": "test/index.js"
},
"publishConfig": {
"ignore": [
".github/workflows"
]
}
}

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc