9 lines
249 B
Plaintext
9 lines
249 B
Plaintext
// Strip ANSI formatting from string
|
|
|
|
"use strict";
|
|
|
|
var stringifiable = require("es5-ext/object/validate-stringifiable")
|
|
, r = require("./regex-ansi")();
|
|
|
|
module.exports = function (str) { return stringifiable(str).replace(r, ""); };
|