当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript string.camelize方法代码示例

本文整理汇总了TypeScript中underscore.string.camelize方法的典型用法代码示例。如果您正苦于以下问题:TypeScript string.camelize方法的具体用法?TypeScript string.camelize怎么用?TypeScript string.camelize使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在underscore.string的用法示例。


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

示例1: findFormatter

export function findFormatter(name: string | Function, formattersDirectory?: string) {
    if (isFunction(name)) {
        return name;
    } else if (isString(name)) {
        const camelizedName = camelize(`${name}Formatter`);

        // first check for core formatters
        let Formatter = loadFormatter(CORE_FORMATTERS_DIRECTORY, camelizedName);
        if (Formatter != null) {
            return Formatter;
        }

        // then check for rules within the first level of rulesDirectory
        if (formattersDirectory) {
            Formatter = loadFormatter(formattersDirectory, camelizedName);
            if (Formatter) {
                return Formatter;
            }
        }

        // else try to resolve as module
        return loadFormatterModule(name);
    } else {
        // If an something else is passed as a name (e.g. object)
        throw new Error(`Name of type ${typeof name} is not supported.`);
    }
}
开发者ID:ScottSWu,项目名称:tslint,代码行数:27,代码来源:formatterLoader.ts

示例2: transformName

function transformName(name: string) {
    // camelize strips out leading and trailing underscores and dashes, so make sure they aren't passed to camelize
    // the regex matches the groups (leading underscores and dashes)(other characters)(trailing underscores and dashes)
    const nameMatch = name.match(/^([-_]*)(.*?)([-_]*)$/);
    if (nameMatch == null) {
        return name + "Rule";
    }
    return nameMatch[1] + camelize(nameMatch[2]) + nameMatch[3] + "Rule";
}
开发者ID:DD94800,项目名称:tslint,代码行数:9,代码来源:ruleLoader.ts

示例3: findFormatter

export function findFormatter(name: string, formattersDirectory?: string) {
    if (typeof name === "function") {
        return name;
    }

    const camelizedName = camelize(`${name}Formatter`);

    // first check for core formatters
    let Formatter = loadFormatter(CORE_FORMATTERS_DIRECTORY, camelizedName);
    if (Formatter != null) {
        return Formatter;
    }

    // then check for rules within the first level of rulesDirectory
    if (formattersDirectory) {
        Formatter = loadFormatter(formattersDirectory, camelizedName);
        if (Formatter) {
            return Formatter;
        }
    }

    // else try to resolve as module
    return loadFormatterModule(name);
}
开发者ID:DD94800,项目名称:tslint,代码行数:24,代码来源:formatterLoader.ts


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