(code)
| 254 | } |
| 255 | |
| 256 | function definePolyfillCode(code) { |
| 257 | return [ |
| 258 | '(function(global) {', |
| 259 | code, |
| 260 | `\n})(typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : this);`, |
| 261 | ].join(''); |
| 262 | } |
| 263 | |
| 264 | const reDepencencyString = /^(['"])([^'"']*)\1/; |
| 265 | function replaceDependencyID(stringWithDependencyIDAtStart, resolvedDeps) { |
no outgoing calls
no test coverage detected
searching dependent graphs…