UNPKG
unicorn-magic
Version:
latest (0.4.0)
0.4.0
0.3.0
0.2.0
0.1.0
Some useful utilities I often need
github.com/sindresorhus/unicorn-magic
sindresorhus/unicorn-magic
unicorn-magic
/
node.js
8 lines
(5 loc)
•
183 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
import
{fileURLToPath}
from
'node:url'
;
export
function
toPath
(
urlOrPath
) {
return
urlOrPath
instanceof
URL
?
fileURLToPath
(urlOrPath) : urlOrPath; }
export
*
from
'./default.js'
;