UNPKG
@vue.ts/common
Version:
latest (1.0.0-beta.2)
1.0.0-beta.2
1.0.0-beta.1
0.6.0
0.5.0
0.4.0
Utils used by vue.ts
github.com/so1ve/vue.ts/tree/main/packages/common
so1ve/vue.ts
@vue.ts/common
/
dist
/
index.js
8 lines
(6 loc)
•
222 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
import
{ createFilter }
from
"@rollup/pluginutils"
;
//#region src/utils.ts
const
windowsPathReg =
/\\/g
;
const
normalizePath
= (
id
) => id.
replace
(windowsPathReg,
"/"
);
//#endregion
export
{ createFilter, normalizePath };