mirror of
https://gitee.com/bimuziyan/ccc-obfuscated-code.git
synced 2026-05-31 15:55:43 +08:00
update
This commit is contained in:
16
node_modules/inversify/amd/annotation/optional.js
generated
vendored
Normal file
16
node_modules/inversify/amd/annotation/optional.js
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
define(["require", "exports", "../constants/metadata_keys", "../planning/metadata", "./decorator_utils"], function (require, exports, METADATA_KEY, metadata_1, decorator_utils_1) {
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
function optional() {
|
||||
return function (target, targetKey, index) {
|
||||
var metadata = new metadata_1.Metadata(METADATA_KEY.OPTIONAL_TAG, true);
|
||||
if (typeof index === "number") {
|
||||
decorator_utils_1.tagParameter(target, targetKey, index, metadata);
|
||||
}
|
||||
else {
|
||||
decorator_utils_1.tagProperty(target, targetKey, metadata);
|
||||
}
|
||||
};
|
||||
}
|
||||
exports.optional = optional;
|
||||
});
|
||||
Reference in New Issue
Block a user