1
0
mirror of https://github.com/musix-org/musix-oss synced 2026-05-25 23:35:22 +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
+4
View File
@@ -0,0 +1,4 @@
require('../../modules/es.reflect.apply');
var path = require('../../internals/path');
module.exports = path.Reflect.apply;
+4
View File
@@ -0,0 +1,4 @@
require('../../modules/es.reflect.construct');
var path = require('../../internals/path');
module.exports = path.Reflect.construct;
+4
View File
@@ -0,0 +1,4 @@
require('../../modules/es.reflect.define-property');
var path = require('../../internals/path');
module.exports = path.Reflect.defineProperty;
+4
View File
@@ -0,0 +1,4 @@
require('../../modules/es.reflect.delete-property');
var path = require('../../internals/path');
module.exports = path.Reflect.deleteProperty;
+4
View File
@@ -0,0 +1,4 @@
require('../../modules/es.reflect.get-own-property-descriptor');
var path = require('../../internals/path');
module.exports = path.Reflect.getOwnPropertyDescriptor;
+4
View File
@@ -0,0 +1,4 @@
require('../../modules/es.reflect.get-prototype-of');
var path = require('../../internals/path');
module.exports = path.Reflect.getPrototypeOf;
+4
View File
@@ -0,0 +1,4 @@
require('../../modules/es.reflect.get');
var path = require('../../internals/path');
module.exports = path.Reflect.get;
+4
View File
@@ -0,0 +1,4 @@
require('../../modules/es.reflect.has');
var path = require('../../internals/path');
module.exports = path.Reflect.has;
+16
View File
@@ -0,0 +1,16 @@
require('../../modules/es.reflect.apply');
require('../../modules/es.reflect.construct');
require('../../modules/es.reflect.define-property');
require('../../modules/es.reflect.delete-property');
require('../../modules/es.reflect.get');
require('../../modules/es.reflect.get-own-property-descriptor');
require('../../modules/es.reflect.get-prototype-of');
require('../../modules/es.reflect.has');
require('../../modules/es.reflect.is-extensible');
require('../../modules/es.reflect.own-keys');
require('../../modules/es.reflect.prevent-extensions');
require('../../modules/es.reflect.set');
require('../../modules/es.reflect.set-prototype-of');
var path = require('../../internals/path');
module.exports = path.Reflect;
+4
View File
@@ -0,0 +1,4 @@
require('../../modules/es.reflect.is-extensible');
var path = require('../../internals/path');
module.exports = path.Reflect.isExtensible;
+4
View File
@@ -0,0 +1,4 @@
require('../../modules/es.reflect.own-keys');
var path = require('../../internals/path');
module.exports = path.Reflect.ownKeys;
+4
View File
@@ -0,0 +1,4 @@
require('../../modules/es.reflect.prevent-extensions');
var path = require('../../internals/path');
module.exports = path.Reflect.preventExtensions;
+4
View File
@@ -0,0 +1,4 @@
require('../../modules/es.reflect.set-prototype-of');
var path = require('../../internals/path');
module.exports = path.Reflect.setPrototypeOf;
+4
View File
@@ -0,0 +1,4 @@
require('../../modules/es.reflect.set');
var path = require('../../internals/path');
module.exports = path.Reflect.set;