1e90f63f6bca19fc5092f76fd79d6f2345f95f38
[yaffs-website] / node_modules / underscore.string / quote.js
1 var surround = require('./surround');
2
3 module.exports = function quote(str, quoteChar) {
4   return surround(str, quoteChar || '"');
5 };