UNPKG
unpkg
Version:
latest (0.2.0)
0.2.0
0.1.0
0.0.1
The JavaScript API for unpkg
github.com/unpkg/unpkg
unpkg/unpkg
unpkg
/
modules
/
utils
/
isLocalModuleIdentifier.js
8 lines
(5 loc)
•
231 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
const
isRemoteModuleIdentifier =
require
(
"./isRemoteModuleIdentifier"
)
function
isLocalModuleIdentifier
(
id
) {
return
[
"."
,
"/"
].
includes
(id.
charAt
(
0
)) && !
isRemoteModuleIdentifier
(id) }
module
.
exports
= isLocalModuleIdentifier