Your IP : 216.73.217.154


Current Path : /var/www/html/eform/npm/Ladda/node_modules/underscore.string/
Upload File :
Current File : /var/www/html/eform/npm/Ladda/node_modules/underscore.string/unquote.js

module.exports = function unquote(str, quoteChar) {
  quoteChar = quoteChar || '"';
  if (str[0] === quoteChar && str[str.length - 1] === quoteChar)
    return str.slice(1, str.length - 1);
  else return str;
};