Files
taimed/node_modules/underscore.string/quote.js
2025-07-24 17:21:45 +08:00

6 lines
134 B
JavaScript

var surround = require('./surround');
module.exports = function quote(str, quoteChar) {
return surround(str, quoteChar || '"');
};