Updated to Drupal 8.6.4, which is PHP 7.3 friendly. Also updated HTMLaw library....
[yaffs-website] / node_modules / underscore.string / isBlank.js
1 var makeString = require('./helper/makeString');
2
3 module.exports = function isBlank(str) {
4   return (/^\s*$/).test(makeString(str));
5 };