You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
240 B

4 years ago
  1. /**
  2. * @author Toru Nagashima
  3. * See LICENSE file in root directory for full license.
  4. */
  5. "use strict"
  6. module.exports = function stripImportPathParams(path) {
  7. const i = path.indexOf("!")
  8. return i === -1 ? path : path.slice(0, i)
  9. }