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.
8 lines
364 B
8 lines
364 B
var metadata = require('./_metadata'); |
|
var anObject = require('./_an-object'); |
|
var ordinaryOwnMetadataKeys = metadata.keys; |
|
var toMetaKey = metadata.key; |
|
|
|
metadata.exp({ getOwnMetadataKeys: function getOwnMetadataKeys(target /* , targetKey */) { |
|
return ordinaryOwnMetadataKeys(anObject(target), arguments.length < 2 ? undefined : toMetaKey(arguments[1])); |
|
} });
|
|
|