當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript common.Var類代碼示例

本文整理匯總了TypeScript中@sirian/common.Var的典型用法代碼示例。如果您正苦於以下問題:TypeScript Var類的具體用法?TypeScript Var怎麽用?TypeScript Var使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Var類的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: normalize

    public normalize(selected: string) {
        const choices = this.getChoices();

        const strChoice = Var.stringify(selected);

        for (const [key, choice] of KV.entries(choices)) {
            if (Var.stringify(key) === strChoice) {
                return choice;
            }
        }

        const values = new Set<T>();

        for (const choice of KV.values(choices)) {
            if (Var.stringify(choice) === strChoice) {
                values.add(choice);
            }
        }

        switch (values.size) {
            case 0:
                throw new InvalidArgumentError(`Value "${strChoice}" is invalid`);
            case 1:
                return [...values][0];
            default:
                throw new InvalidArgumentError(`Value "${strChoice}" is ambiguous`);
        }
    }
開發者ID:sirian,項目名稱:node-component-console,代碼行數:28,代碼來源:ChoiceQuestion.ts

示例2: hasArgument

    public hasArgument(name: string | number) {
        if (Var.isNumber(name)) {
            const args = this.getArguments();
            return Var.hasOwn(args, name);
        }

        return this.arguments.has(name);
    }
開發者ID:sirian,項目名稱:node-component-console,代碼行數:8,代碼來源:InputDefinition.ts

示例3: constructor

 constructor(init: IParameterInit<T>) {
     this.name = Var.stringify(init.name);
     this.description = Var.stringify(init.description);
     this.defaultValue = init.defaultValue;
     this.normalizer = init.normalizer;
     this.validator = init.validator;
     this.multiple = !!init.multiple;
     this.allowedValues = init.allowedValues || [];
 }
開發者ID:sirian,項目名稱:node-component-console,代碼行數:9,代碼來源:Parameter.ts

示例4:

    public static entries<T>(value: T): KVEntries<T> {
        if (Var.isNullable(value)) {
            return [] as KVEntries<T>;
        }
        if (Var.isString(value)) {
            return KV.entries([...value]) as KVEntries<T>;
        }
        if (Var.hasMethod(value, "entries")) {
            return [...value.entries()] as KVEntries<T>;
        }

        return Obj.entries(value) as KVEntries<T>;
    }
開發者ID:sirian,項目名稱:node-component-console,代碼行數:13,代碼來源:KV.ts

示例5: formatDefaultValue

 protected formatDefaultValue(defaultValue: undefined | string | string[]) {
     if (Var.isArray(defaultValue)) {
         defaultValue = defaultValue.map((value) => Formatter.escape(value));
         return JSON.stringify(defaultValue).replace(/\\\\/g, "\\");
     } else {
         return Formatter.escape(defaultValue);
     }
 }
開發者ID:sirian,項目名稱:node-component-console,代碼行數:8,代碼來源:TextDescriptor.ts

示例6: getCommandAliasesText

    protected getCommandAliasesText(definition: CommandDefinition) {
        const aliases = definition.getAliases();

        if (!aliases.length) {
            return "";
        }

        const text = aliases.join("|");
        return Var.stringify(`[${text}]`);
    }
開發者ID:sirian,項目名稱:node-component-console,代碼行數:10,代碼來源:TextDescriptor.ts

示例7: get

 public async get(name: string) {
     const fn = this.factories[name];
     const importResult = await fn();
     for (const [key, value] of Object.entries(importResult)) {
         if (Var.isSubclassOf(value, Command)) {
             return value;
         }
     }
     throw new CommandNotFoundError(`Command "${name}" not found`);
 }
開發者ID:sirian,項目名稱:node-component-console,代碼行數:10,代碼來源:index.ts


注:本文中的@sirian/common.Var類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。