UNPKG
mop-cli
Version:
latest (0.3.0)
0.3.0
0.2.0
0.1.0
Lint and maintain many projects at once
github.com/sholladay/mop-cli
sholladay/mop-cli
mop-cli
/
lib
/
is-dep-key.js
8 lines
(5 loc)
•
129 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
'use strict'
;
const
isDepKey
= (
key
) => {
return
key.
toLowerCase
().
endsWith
(
'dependencies'
); };
module
.
exports
= isDepKey;