Security update to Drupal 8.4.6
[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 };