| 31 | |
| 32 | /** Remove a @scope/ prefix from a package name string */ |
| 33 | export const removeScope = name => name.replace(/^@.*\//, ''); |
| 34 | |
| 35 | const INVALID_ES3_IDENT = /((^[^a-zA-Z]+)|[^\w.-])|([^a-zA-Z0-9]+$)/g; |
| 36 |
no outgoing calls
no test coverage detected
searching dependent graphs…