UNPKG

@mikezimm/fps-core-v7

Version:

Library of reusable core interfaces, types and constants migrated from fps-library-v2

15 lines 435 B
/** * 2024-09-03: Migrated from fps-Pnp2/src/services/sp */ // from: window.location.search.match(/debugManifestsFile(.*)manifests.js/gmi) export const gulpRegex = new RegExp(`debugManifestsFile(.*)manifests.js`, 'gmi'); export function check4Gulp() { if (window.location.search.match(gulpRegex)) { return true; } else { return false; } ; } //# sourceMappingURL=CheckGulping.js.map