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


TypeScript path.path_combine函數代碼示例

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


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

示例1: check

 function check(){
     nodeModules = path_combine(root, current, '/node_modules/', name, '/');
     lookups.unshift(path_combine(nodeModules, 'package.json'));
     _file_get(lookups[0]).then(function(text){
         onComplete(null, text);
     }, onComplete);
 }
開發者ID:atmajs,項目名稱:MaskJS,代碼行數:7,代碼來源: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: 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

示例4: onComplete

 function onComplete(error, text) {
     var json;
     if (text) {
         try { json = JSON.parse(text); }
         catch (error) {}
     }
     if (error != null || json == null) {
         var next = current.replace(/[^\/]+\/?$/, '');
         if (next === current) {
             cb('Module was not resolved: ' + lookups.join(','));
             return;
         }
         current = next;
         check();
         return;
     }
     if (resource) {
         cb(null, nodeModules + resource);
         return;
     }
     var filename;
     if (contentType === 'mask' && json.mainMask) {
         filename = json.mainMask;
     }
     else if (contentType === 'js' && json.main) {
         filename = json.main;
     } else {
         filename = 'index.' + _ext[contentType];
     }
     cb(null, path_combine(nodeModules, filename));
 }
開發者ID:atmajs,項目名稱:MaskJS,代碼行數:31,代碼來源:utils.ts

示例5: fromNs

function fromNs(node) {
    var type = node.contentType || 'script';
    var path = node.namespace.replace(/\./g, '/');
    if (path[0] === '/') {
        path = '.' + path;
    } else {
        var base = _opts.nsBase;
        if (base != null) {
            path = path_combine(base, path);
        }
    }
    var exports = node.exports;
    if (exports == null) {
        path += '/' + node.alias;
    }
    else if (exports.length === 1) {
        var exp = exports[0];
        var name = exp.name;
        path += '/' + name;

        if (type === 'script' && _opts.es6Modules !== true) {
            node.alias = exp.alias || name;
            node.exports = null;
        }
    }		
    var default_ = _opts.ext[type] || type;
    path += '.' + default_;
    return path;
}
開發者ID:atmajs,項目名稱:MaskJS,代碼行數:29,代碼來源:utils.ts

示例6: u_resolveBase

export function u_resolveBase (){
    if (_opts.base == null) {
        _opts.base = path_resolveCurrent();
    }
    else if (path_isRelative(_opts.base) === true) {
        _opts.base = path_combine(path_resolveCurrent(), _opts.base);
    }
    return _opts.base;
};
開發者ID:atmajs,項目名稱:MaskJS,代碼行數:9,代碼來源:utils.ts

示例7: 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

示例8: eq_

 ].forEach(row => {
     var [ base, path, expect ] = row;
     
     eq_(path_combine(base, path), expect);
 });
開發者ID:atmajs,項目名稱:MaskJS,代碼行數:5,代碼來源:path.spec.ts


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