unquote.js 159 B

123456789
  1. 'use strict';
  2. exports.__esModule = true;
  3. exports.default = function (string) {
  4. return string.replace(/["']/g, '');
  5. };
  6. module.exports = exports['default'];