Updated to Drupal 8.6.4, which is PHP 7.3 friendly. Also updated HTMLaw library....
[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 };