• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

TypeScript common.Arr类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了TypeScript中@sirian/common.Arr的典型用法代码示例。如果您正苦于以下问题:TypeScript Arr类的具体用法?TypeScript Arr怎么用?TypeScript Arr使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



在下文中一共展示了Arr类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。

示例1: getParameterOption

    public getParameterOption(values: string | string[], defaultValue = false, onlyParams = false) {
        values = Arr.cast(values);

        const tokens = [...this.tokens];

        while (tokens.length) {
            const token = tokens.shift()!;

            if (onlyParams && "--" === token) {
                return false;
            }

            for (const value of values) {
                if (token === value) {
                    return tokens.shift();
                }

                // Options with values:
                //   For long options, test for '--option=' at beginning
                //   For short options, test for '-o' at beginning
                const leading = value.startsWith("--") ? value + "=" : value;
                if ("" !== leading && token.startsWith(leading)) {
                    return token.substr(leading.length);
                }
            }
        }

        return defaultValue;
    }
开发者ID:sirian,项目名称:node-component-console,代码行数:29,代码来源:ArgvInput.ts


示例2: splitByWidth

    public static splitByWidth(str: string, width: number) {
        str = Var.stringify(str);
        if (this.width(str) <= width) {
            return [str];
        }

        const graphemes = Unicode.getGraphemes(str);

        return Arr.chunk(graphemes, width)
            .map((a) => Str.padRight(a.join(""), width, " "));
    }
开发者ID:sirian,项目名称:node-component-console,代码行数:11,代码来源:StrUtil.ts


示例3: toString

    public toString() {
        const params: string[] = [];

        for (const [param, val] of this.parameters) {
            if (param && "-" === param[0]) {
                for (const v of Arr.cast(val)) {
                    if (v) {
                        params.push(param + "=" + this.escapeToken(v));
                    } else {
                        params.push(param);
                    }
                }
            } else {
                const value = Arr.cast(val)
                    .map((v) => this.escapeToken(v))
                    .join(" ");

                params.push(value);
            }
        }

        return params.join(" ");
    }
开发者ID:sirian,项目名称:node-component-console,代码行数:23,代码来源:RecordInput.ts


示例4: getParameterOption

    public getParameterOption(values: string | string[], defaultValue = false, onlyParams: boolean = false) {
        values = Arr.cast(values);

        for (const [k, v] of this.parameters) {
            if (onlyParams && (k === "--" || (Var.isNumber(k) && "--" === v))) {
                return false;
            }

            if (Var.isNumber(k)) {
                if (values.includes(v)) {
                    return true;
                }
            } else if (values.includes(k)) {
                return v;
            }
        }

        return defaultValue;
    }
开发者ID:sirian,项目名称:node-component-console,代码行数:19,代码来源:RecordInput.ts


示例5: hasParameterOption

    public hasParameterOption(values: string | string[], onlyParams: boolean = false): boolean {
        values = Arr.cast(values);

        for (let [k, v] of this.parameters) {
            if (!Var.isNumber(k)) {
                v = k;
            }

            if (onlyParams && "--" === v) {
                return false;
            }

            if (values.includes(v)) {
                return true;
            }
        }

        return false;
    }
开发者ID:sirian,项目名称:node-component-console,代码行数:19,代码来源:RecordInput.ts


示例6: hasParameterOption

    public hasParameterOption(values: string | string[], onlyParams = false) {
        values = Arr.cast(values);

        for (const token of this.tokens) {
            if (onlyParams && "--" === token) {
                return false;
            }

            for (const value of values) {
                // Options with values:
                //   For long options, test for '--option=' at beginning
                //   For short options, test for '-o' at beginning
                const leading = value.startsWith("--") ? value + "=" : value;

                if (token === value || ("" !== leading && token.startsWith(leading))) {
                    return true;
                }
            }
        }

        return false;
    }
开发者ID:sirian,项目名称:node-component-console,代码行数:22,代码来源:ArgvInput.ts


示例7: write

    public write(messages: string | string[] = [], init: Partial<IOutputWriteOptions> = {}) {
        const options = {
            type: OutputType.NORMAL,
            verbosity: OutputVerbosity.NORMAL,
            newline: 0,
            ...init,
        };

        messages = Arr.cast(messages);

        if (options.verbosity > this.getVerbosity()) {
            return this;
        }

        const formatter = this.getFormatter();

        for (let message of messages) {
            message = Var.stringify(message);

            switch (options.type) {
                case OutputType.PLAIN:
                    message = StrUtil.stripTags(formatter.decorate(message));
                    break;
                case OutputType.RAW:
                    break;
                case OutputType.NORMAL:
                default:
                    message = formatter.decorate(message);
                    break;
            }
            this.doWrite(message);

            this.newLine(options.newline);
        }

        return this;
    }
开发者ID:sirian,项目名称:node-component-console,代码行数:37,代码来源:Output.ts


示例8: writeText

    protected writeText(content: string | string[]) {
        const str = Arr.cast(content).map(Var.stringify).join("");
        this.write(str, true);

        return this;
    }
开发者ID:sirian,项目名称:node-component-console,代码行数:6,代码来源:TextDescriptor.ts


示例9: render

    public render(messages: string | string[]) {
        messages = Arr.cast(messages);
        const options = this.options;

        const padding = options.padding || [];
        const padTop = padding.length > 0 ? padding[0] : 0;
        const padRight = padding.length > 1 ? padding[1] : padTop;
        const padBottom = padding.length > 2 ? padding[2] : padTop;
        const padLeft = padding.length > 3 ? padding[3] : padRight;

        const lines: string[] = [];
        const output = this.output;
        const formatter = output.getFormatter();

        const type = Var.stringify(options.type);
        const typeWidth = type ? StrUtil.width(type) + 1 : 0;

        const maxMessageWidth = Math.max(
            options.minWidth,
            ...messages.map((msg) => formatter.widthWithoutDecoration(msg)),
        );

        const maxWidth = Math.min(
            output.getWidth(),
            options.maxWidth,
            maxMessageWidth + typeWidth + padRight + padLeft,
        );

        const chunkWidth = maxWidth - typeWidth - padLeft - padRight;

        for (const message of messages) {
            const chunks = StrUtil.splitByWidth(message, chunkWidth);

            for (const chunk of chunks) {
                const prefix = 0 === lines.length ? type : "";

                const parts = [
                    StrUtil.spaces(padLeft),
                    Str.padRight(prefix, typeWidth),
                    Str.padRight(chunk, chunkWidth),
                    StrUtil.spaces(padRight),
                ];

                lines.push(parts.join(""));
            }
        }

        const emptyLine = StrUtil.spaces(maxWidth);

        if (output.isDecorated()) {
            for (let i = 0; i < padTop; i++) {
                lines.unshift(emptyLine);
            }
            for (let i = 0; i < padBottom; i++) {
                lines.push(emptyLine);
            }
        }

        for (const line of lines) {
            const text = Formatter.formatText(line, options.style);

            output.writeln(text);
        }
    }
开发者ID:sirian,项目名称:node-component-console,代码行数:64,代码来源:Block.ts



注:本文中的@sirian/common.Arr类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
TypeScript common.Obj类代码示例发布时间:2022-05-28
下一篇:
TypeScript is.undefined函数代码示例发布时间:2022-05-28
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap