Skip to content

Commit e9486ea

Browse files
committed
Use JavaScript startsWith insead of lodash
1 parent adde348 commit e9486ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/static_dist.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ function addPackages(siteConfig, buildFolder) {
117117
for(var depName in siteConfig.html.dependencies) {
118118
var possibleFilePath = siteConfig.dependencies[depName];
119119

120-
if (_.startsWith(possibleFilePath,'file:')) {
120+
if (possibleFilePath.startsWith('file:')) {
121121
filePathedDeps[depName] = possibleFilePath;
122122
}
123123
}

0 commit comments

Comments
 (0)