Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / node_modules / strip-ansi / index.js
1 'use strict';
2 var ansiRegex = require('ansi-regex')();
3
4 module.exports = function (str) {
5         return typeof str === 'string' ? str.replace(ansiRegex, '') : str;
6 };