Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / node_modules / underscore.string / reverse.js
1 var chars = require('./chars');
2
3 module.exports = function reverse(str) {
4   return chars(str).reverse().join('');
5 };