Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
630 B
15 lines
630 B
var $ = require('../internals/export');
|
|
var ReflectMetadataModule = require('../internals/reflect-metadata');
|
|
var anObject = require('../internals/an-object');
|
|
|
|
var ordinaryOwnMetadataKeys = ReflectMetadataModule.keys;
|
|
var toMetadataKey = ReflectMetadataModule.toKey;
|
|
|
|
// `Reflect.getOwnMetadataKeys` method
|
|
// https://github.com/rbuckton/reflect-metadata
|
|
$({ target: 'Reflect', stat: true }, {
|
|
getOwnMetadataKeys: function getOwnMetadataKeys(target /* , targetKey */) {
|
|
var targetKey = arguments.length < 2 ? undefined : toMetadataKey(arguments[1]);
|
|
return ordinaryOwnMetadataKeys(anObject(target), targetKey);
|
|
}
|
|
});
|
|
|