File size: 134 Bytes
bc20498 |
1 2 3 4 5 6 |
var surround = require('./surround');
module.exports = function quote(str, quoteChar) {
return surround(str, quoteChar || '"');
};
|
bc20498 |
1 2 3 4 5 6 |
var surround = require('./surround');
module.exports = function quote(str, quoteChar) {
return surround(str, quoteChar || '"');
};
|