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


TypeScript path.path_getExtension函數代碼示例

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


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

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

示例2: type_get

export function type_get(endpoint: Endpoint) {
    var type = endpoint.contentType;
    if (type == null && endpoint.moduleType != null) {
        var x = _typeMappings[endpoint.moduleType];
        if (x != null) {
            return x;
        }
    }
    var ext = type || path_getExtension(endpoint.path);
    if (ext === '' || ext === 'mask') {
        return 'mask';
    }
    return _typeMappings[ext];
}
開發者ID:atmajs,項目名稱:MaskJS,代碼行數:14,代碼來源:types.ts

示例3: type_isMask

export function type_isMask(endpoint: Endpoint) {
    var type = endpoint.contentType,
        ext = type || path_getExtension(endpoint.path);
    return ext === '' || ext === 'mask' || ext === 'html';
}
開發者ID:atmajs,項目名稱:MaskJS,代碼行數:5,代碼來源:types.ts

示例4: hasExt

function hasExt(path) {
    return path_getExtension(path) !== '';
}
開發者ID:atmajs,項目名稱:MaskJS,代碼行數:3,代碼來源:utils.ts


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