MCPcopy Create free account
hub / github.com/plotly/plotly.js / listLocalFiles

Function listLocalFiles

tasks/sync_packages.js:173–181  ·  view source on GitHub ↗
(cb)

Source from the content-addressed store, hash-verified

171
172 var localeFiles;
173 function listLocalFiles(cb) {
174 var localeGlob = path.join(constants.pathToLib, 'locales', '*.js');
175 glob(localeGlob).then(function(_localeFiles) {
176 localeFiles = _localeFiles;
177 cb();
178 }).catch(function(err) {
179 cb(null);
180 });
181 }
182
183 function writePackageJSON(cb) {
184 var cnt = {

Callers

nothing calls this directly

Calls 1

globFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…