UNPKG

@tevm/compiler

Version:
9 lines (8 loc) 177 B
/** * Check if import path is local * @param {string} importPath * @returns {boolean} */ export const isImportLocal = (importPath) => { return importPath.startsWith('.') }