added whole system from ola4doc

This commit is contained in:
Bachir Soussi Chiadmi
2017-12-14 17:06:06 +01:00
parent 9646c74be1
commit 0611418f7a
8725 changed files with 817688 additions and 2 deletions
+10
View File
@@ -0,0 +1,10 @@
'use strict';
module.exports = {
isSticky: require('./is-sticky'),
isUnicode: require('./is-unicode'),
match: require('./match'),
replace: require('./replace'),
search: require('./search'),
split: require('./split')
};
+9
View File
@@ -0,0 +1,9 @@
'use strict';
var validRegExp = require('../valid-reg-exp')
, re = /\/[a-xz]*y[a-xz]*$/;
module.exports = function () {
return Boolean(String(validRegExp(this)).match(re));
};
+9
View File
@@ -0,0 +1,9 @@
'use strict';
var validRegExp = require('../valid-reg-exp')
, re = /\/[a-xz]*u[a-xz]*$/;
module.exports = function () {
return Boolean(String(validRegExp(this)).match(re));
};
+6
View File
@@ -0,0 +1,6 @@
'use strict';
if (!require('./is-implemented')()) {
Object.defineProperty(RegExp.prototype, 'match', { value: require('./shim'),
configurable: true, enumerable: false, writable: true });
}
+5
View File
@@ -0,0 +1,5 @@
'use strict';
module.exports = require('./is-implemented')()
? RegExp.prototype.match
: require('./shim');
+8
View File
@@ -0,0 +1,8 @@
'use strict';
var re = /foo/;
module.exports = function () {
if (typeof re.match !== 'function') return false;
return re.match('barfoobar') && !re.match('elo');
};
+8
View File
@@ -0,0 +1,8 @@
'use strict';
var validRegExp = require('../../valid-reg-exp');
module.exports = function (string) {
validRegExp(this);
return String(string).match(this);
};
+6
View File
@@ -0,0 +1,6 @@
'use strict';
if (!require('./is-implemented')()) {
Object.defineProperty(RegExp.prototype, 'replace', { value: require('./shim'),
configurable: true, enumerable: false, writable: true });
}
+5
View File
@@ -0,0 +1,5 @@
'use strict';
module.exports = require('./is-implemented')()
? RegExp.prototype.replace
: require('./shim');
+8
View File
@@ -0,0 +1,8 @@
'use strict';
var re = /foo/;
module.exports = function () {
if (typeof re.replace !== 'function') return false;
return re.replace('foobar', 'mar') === 'marbar';
};
+8
View File
@@ -0,0 +1,8 @@
'use strict';
var validRegExp = require('../../valid-reg-exp');
module.exports = function (string, replaceValue) {
validRegExp(this);
return String(string).replace(this, replaceValue);
};
+6
View File
@@ -0,0 +1,6 @@
'use strict';
if (!require('./is-implemented')()) {
Object.defineProperty(RegExp.prototype, 'search', { value: require('./shim'),
configurable: true, enumerable: false, writable: true });
}
+5
View File
@@ -0,0 +1,5 @@
'use strict';
module.exports = require('./is-implemented')()
? RegExp.prototype.search
: require('./shim');
+8
View File
@@ -0,0 +1,8 @@
'use strict';
var re = /foo/;
module.exports = function () {
if (typeof re.search !== 'function') return false;
return re.search('barfoo') === 3;
};
+8
View File
@@ -0,0 +1,8 @@
'use strict';
var validRegExp = require('../../valid-reg-exp');
module.exports = function (string) {
validRegExp(this);
return String(string).search(this);
};
+6
View File
@@ -0,0 +1,6 @@
'use strict';
if (!require('./is-implemented')()) {
Object.defineProperty(RegExp.prototype, 'split', { value: require('./shim'),
configurable: true, enumerable: false, writable: true });
}
+5
View File
@@ -0,0 +1,5 @@
'use strict';
module.exports = require('./is-implemented')()
? RegExp.prototype.split
: require('./shim');
+8
View File
@@ -0,0 +1,8 @@
'use strict';
var re = /\|/;
module.exports = function () {
if (typeof re.split !== 'function') return false;
return re.split('bar|foo')[1] === 'foo';
};
+8
View File
@@ -0,0 +1,8 @@
'use strict';
var validRegExp = require('../../valid-reg-exp');
module.exports = function (string) {
validRegExp(this);
return String(string).split(this);
};
+8
View File
@@ -0,0 +1,8 @@
'use strict';
var isSticky = require('../is-sticky');
if (!require('./is-implemented')()) {
Object.defineProperty(RegExp.prototype, 'sticky', { configurable: true,
enumerable: false, get: isSticky });
}
+10
View File
@@ -0,0 +1,10 @@
'use strict';
module.exports = function () {
var dummyRegExp = /a/;
// We need to do check on instance and not on prototype due to how ES2015 spec evolved:
// https://github.com/tc39/ecma262/issues/262
// https://github.com/tc39/ecma262/pull/263
// https://bugs.chromium.org/p/v8/issues/detail?id=4617
return 'sticky' in dummyRegExp;
};
+8
View File
@@ -0,0 +1,8 @@
'use strict';
var isUnicode = require('../is-unicode');
if (!require('./is-implemented')()) {
Object.defineProperty(RegExp.prototype, 'unicode', { configurable: true,
enumerable: false, get: isUnicode });
}
+10
View File
@@ -0,0 +1,10 @@
'use strict';
module.exports = function () {
var dummyRegExp = /a/;
// We need to do check on instance and not on prototype due to how ES2015 spec evolved:
// https://github.com/tc39/ecma262/issues/262
// https://github.com/tc39/ecma262/pull/263
// https://bugs.chromium.org/p/v8/issues/detail?id=4617
return 'unicode' in dummyRegExp;
};
+9
View File
@@ -0,0 +1,9 @@
// Thanks to Andrew Clover:
// http://stackoverflow.com/questions/3561493
// /is-there-a-regexp-escape-function-in-javascript
'use strict';
var re = /[\-\/\\\^$*+?.()|\[\]{}]/g;
module.exports = function (str) { return String(str).replace(re, '\\$&'); };
+8
View File
@@ -0,0 +1,8 @@
'use strict';
module.exports = {
'#': require('./#'),
escape: require('./escape'),
isRegExp: require('./is-reg-exp'),
validRegExp: require('./valid-reg-exp')
};
+9
View File
@@ -0,0 +1,9 @@
'use strict';
var toString = Object.prototype.toString
, id = toString.call(/a/);
module.exports = function (x) {
return (x && (x instanceof RegExp || (toString.call(x) === id))) || false;
};
+8
View File
@@ -0,0 +1,8 @@
'use strict';
var isRegExp = require('./is-reg-exp');
module.exports = function (x) {
if (!isRegExp(x)) throw new TypeError(x + " is not a RegExp object");
return x;
};