LimePot
76722fec47
Going to slowly work on a Bulma site, which will end up being the main site. Currently under the /BETA/ folder so Alpha site will still be main site.
4 lines
154 B
JavaScript
4 lines
154 B
JavaScript
'use strict';
|
|
const ansiRegex = require('ansi-regex');
|
|
|
|
module.exports = string => typeof string === 'string' ? string.replace(ansiRegex(), '') : string;
|