hasScssInterpolation.js 258 B

1234567891011121314
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports["default"] = _default;
  6. /**
  7. * Check whether a string has scss interpolation
  8. *
  9. * @param {string} string
  10. */
  11. function _default(string) {
  12. return /#{.+?}/.test(string);
  13. }