mirror of
https://gitlab.com/octtspacc/staticoso
synced 2025-06-05 22:09:23 +02:00
First support for md extensions; Package all needed dependencies in the repo
This commit is contained in:
8
Source/node_modules/core-js/modules/es6.reflect.has.js
generated
vendored
Normal file
8
Source/node_modules/core-js/modules/es6.reflect.has.js
generated
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
// 26.1.9 Reflect.has(target, propertyKey)
|
||||
var $export = require('./_export');
|
||||
|
||||
$export($export.S, 'Reflect', {
|
||||
has: function has(target, propertyKey) {
|
||||
return propertyKey in target;
|
||||
}
|
||||
});
|
Reference in New Issue
Block a user