Last change
on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
630 bytes
|
Line | |
---|
1 | var $ = require('../internals/export');
|
---|
2 | var ReflectMetadataModule = require('../internals/reflect-metadata');
|
---|
3 | var anObject = require('../internals/an-object');
|
---|
4 |
|
---|
5 | var ordinaryOwnMetadataKeys = ReflectMetadataModule.keys;
|
---|
6 | var toMetadataKey = ReflectMetadataModule.toKey;
|
---|
7 |
|
---|
8 | // `Reflect.getOwnMetadataKeys` method
|
---|
9 | // https://github.com/rbuckton/reflect-metadata
|
---|
10 | $({ target: 'Reflect', stat: true }, {
|
---|
11 | getOwnMetadataKeys: function getOwnMetadataKeys(target /* , targetKey */) {
|
---|
12 | var targetKey = arguments.length < 2 ? undefined : toMetadataKey(arguments[1]);
|
---|
13 | return ordinaryOwnMetadataKeys(anObject(target), targetKey);
|
---|
14 | }
|
---|
15 | });
|
---|
Note:
See
TracBrowser
for help on using the repository browser.