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


TypeScript path.path_normalize函数代码示例

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


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

示例1: u_resolveLocation

export function u_resolveLocation (ctx, ctr?, module?) {
    if (module != null) {
        return module.location;
    }
    while(ctr != null) {
        if (ctr.location != null) {
            return ctr.location;
        }
        if (ctr.resource != null && ctr.resource.location) {
            return ctr.resource.location;
        }
        ctr = ctr.parent;
    }
    var path = null;
    if (ctx != null) {
        if (ctx.filename != null) {
            path = path_getDir(path_normalize(ctx.filename));
        }
        if (ctx.dirname != null) {
            path = path_normalize(ctx.dirname + '/');
        }
    }
    if (path == null) {
        return path_resolveCurrent();
    }
    if (path_isRelative(path) === false) {
        return path;
    }
    return path_combine(u_resolveBase(), path);
};
开发者ID:atmajs,项目名称:MaskJS,代码行数:30,代码来源:utils.ts

示例2: toAbsolute

function toAbsolute(path_, ctx, ctr, module) {
    var path = path_;
    if (path_isRelative(path)) {
        path = path_combine(u_resolveLocation(ctx, ctr, module), path);
    }
    else if (path.charCodeAt(0) === 47 /*/*/) {
        path = path_combine(u_resolveBase(), path);
    }
    return path_normalize(path);
}
开发者ID:atmajs,项目名称:MaskJS,代码行数:10,代码来源:utils.ts

示例3: resolvePath

	function resolvePath(node, location) {
		var path = node.path,
			type = node.contentType;
		if ((type == null || type === 'mask') && path_getExtension(path) === '') {
			path += '.mask';
		}
		if (path_isRelative(path)) {
			path = path_combine(location, path);
		}
		return path_normalize(path);
	}
开发者ID:atmajs,项目名称:MaskJS,代码行数:11,代码来源:dependencies.ts

示例4: u_setOption

export function u_setOption (options, key, val) {
    if (key === 'base' || key === 'nsBase') {
        var path = path_normalize(val);
        if (path[path.length - 1] !== '/') {
            path += '/';
        }
        // Do not resolve root, as it will be resolved by base later
        // @NextIteration: remove also path_resolveRoot, use instead resolveCurrent
        // if (path[0] === '/') {
        // 	path = path_combine(path_resolveRoot(), path);
        // }
        options[key] = path;
        return this;
    }
    var current = obj_getProperty(options, key);
    if (is_Object(current) && is_Object(val)) {
        obj_extend(current, val);
        return this;
    }
    obj_setProperty(options, key, val);
};
开发者ID:atmajs,项目名称:MaskJS,代码行数:21,代码来源:utils.ts

示例5: eq_

 ].forEach(row => {
     var [ path, expect ] = row;
     
     eq_(path_normalize(path), expect);
 });
开发者ID:atmajs,项目名称:MaskJS,代码行数:5,代码来源:path.spec.ts


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