1
0
mirror of https://github.com/musix-org/musix-oss synced 2026-06-15 10:03:48 +00:00
This commit is contained in:
MatteZ02
2019-10-10 16:43:04 +03:00
parent 6f6ac8a6fa
commit 50b9bed483
9432 changed files with 1988816 additions and 167 deletions
+9
View File
@@ -0,0 +1,9 @@
var at = require('../string/virtual/at');
var StringPrototype = String.prototype;
module.exports = function (it) {
var own = it.at;
return typeof it === 'string' || it === StringPrototype
|| (it instanceof String && own === StringPrototype.at) ? at : own;
};
+1
View File
@@ -0,0 +1 @@
module.exports = require('../../es/instance/bind');
+1
View File
@@ -0,0 +1 @@
module.exports = require('../../es/instance/code-point-at');
+9
View File
@@ -0,0 +1,9 @@
var codePoints = require('../string/virtual/code-points');
var StringPrototype = String.prototype;
module.exports = function (it) {
var own = it.codePoints;
return typeof it === 'string' || it === StringPrototype
|| (it instanceof String && own === StringPrototype.codePoints) ? codePoints : own;
};
+1
View File
@@ -0,0 +1 @@
module.exports = require('../../es/instance/concat');
+1
View File
@@ -0,0 +1 @@
module.exports = require('../../es/instance/copy-within');
+1
View File
@@ -0,0 +1 @@
module.exports = require('../../es/instance/ends-with');
+1
View File
@@ -0,0 +1 @@
module.exports = require('../../stable/instance/entries');
+1
View File
@@ -0,0 +1 @@
module.exports = require('../../es/instance/every');
+1
View File
@@ -0,0 +1 @@
module.exports = require('../../es/instance/fill');
+1
View File
@@ -0,0 +1 @@
module.exports = require('../../es/instance/filter');
+1
View File
@@ -0,0 +1 @@
module.exports = require('../../es/instance/find-index');
+1
View File
@@ -0,0 +1 @@
module.exports = require('../../es/instance/find');
+1
View File
@@ -0,0 +1 @@
module.exports = require('../../es/instance/flags');
+1
View File
@@ -0,0 +1 @@
module.exports = require('../../es/instance/flat-map');
+1
View File
@@ -0,0 +1 @@
module.exports = require('../../es/instance/flat');
+1
View File
@@ -0,0 +1 @@
module.exports = require('../../stable/instance/for-each');
+1
View File
@@ -0,0 +1 @@
module.exports = require('../../es/instance/includes');
+1
View File
@@ -0,0 +1 @@
module.exports = require('../../es/instance/index-of');
+1
View File
@@ -0,0 +1 @@
module.exports = require('../../stable/instance/keys');
+1
View File
@@ -0,0 +1 @@
module.exports = require('../../es/instance/last-index-of');
+1
View File
@@ -0,0 +1 @@
module.exports = require('../../es/instance/map');
+1
View File
@@ -0,0 +1 @@
module.exports = require('../../es/instance/match-all');
+1
View File
@@ -0,0 +1 @@
module.exports = require('../../es/instance/pad-end');
+1
View File
@@ -0,0 +1 @@
module.exports = require('../../es/instance/pad-start');
+1
View File
@@ -0,0 +1 @@
module.exports = require('../../es/instance/reduce-right');
+1
View File
@@ -0,0 +1 @@
module.exports = require('../../es/instance/reduce');
+1
View File
@@ -0,0 +1 @@
module.exports = require('../../es/instance/repeat');
+9
View File
@@ -0,0 +1,9 @@
var replaceAll = require('../string/virtual/replace-all');
var StringPrototype = String.prototype;
module.exports = function (it) {
var own = it.replaceAll;
return typeof it === 'string' || it === StringPrototype
|| (it instanceof String && own === StringPrototype.replaceAll) ? replaceAll : own;
};
+1
View File
@@ -0,0 +1 @@
module.exports = require('../../es/instance/reverse');
+1
View File
@@ -0,0 +1 @@
module.exports = require('../../es/instance/slice');
+1
View File
@@ -0,0 +1 @@
module.exports = require('../../es/instance/some');
+1
View File
@@ -0,0 +1 @@
module.exports = require('../../es/instance/sort');
+1
View File
@@ -0,0 +1 @@
module.exports = require('../../es/instance/splice');
+1
View File
@@ -0,0 +1 @@
module.exports = require('../../es/instance/starts-with');
+1
View File
@@ -0,0 +1 @@
module.exports = require('../../es/instance/trim-end');
+1
View File
@@ -0,0 +1 @@
module.exports = require('../../es/instance/trim-left');
+1
View File
@@ -0,0 +1 @@
module.exports = require('../../es/instance/trim-right');
+1
View File
@@ -0,0 +1 @@
module.exports = require('../../es/instance/trim-start');
+1
View File
@@ -0,0 +1 @@
module.exports = require('../../es/instance/trim');
+1
View File
@@ -0,0 +1 @@
module.exports = require('../../stable/instance/values');