Skip to content

Commit

Permalink
[Deps] update es-abstract
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Oct 2, 2019
1 parent 347e2fa commit 52a5131
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion helpers/MatchAllIterator.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

var ES = require('es-abstract');
var ES = require('es-abstract/es2019');
var flagsGetter = require('regexp.prototype.flags');

var RegExpStringIterator = require('./RegExpStringIterator');
Expand Down
2 changes: 1 addition & 1 deletion helpers/RegExpStringIterator.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';

var define = require('define-properties');
var ES = require('es-abstract');
var ES = require('es-abstract/es2019');
var GetIntrinsic = require('es-abstract/GetIntrinsic');
var hasSymbols = require('has-symbols')();

Expand Down
2 changes: 1 addition & 1 deletion implementation.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

var ES = require('es-abstract');
var ES = require('es-abstract/es2019');
var hasSymbols = require('has-symbols')();

var regexpMatchAllPolyfill = require('./polyfill-regexp-matchall');
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"homepage": "https://github.com/ljharb/String.prototype.matchAll#readme",
"dependencies": {
"define-properties": "^1.1.3",
"es-abstract": "^1.13.0",
"es-abstract": "^1.14.2",
"function-bind": "^1.1.1",
"has-symbols": "^1.0.0",
"regexp.prototype.flags": "^1.2.0"
Expand Down
2 changes: 1 addition & 1 deletion regexp-matchall.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

var ES = require('es-abstract');
var ES = require('es-abstract/es2019');
var flagsGetter = require('regexp.prototype.flags');

var RegExpStringIterator = require('./helpers/RegExpStringIterator');
Expand Down

0 comments on commit 52a5131

Please sign in to comment.