UNPKG

exception-formatter

Version:

[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release) [![Build Status](https://travis-ci.org/benbria/exception-formatter.svg?branch=master)](ht

8 lines (6 loc) 217 B
// eslint-disable-next-line no-control-regex const STRIP_COLORS_RE = /\u001b\[[0-9;]*m/g; // Strip all ansi colors from a string. exports.stripColors = function(str) { return str.replace(STRIP_COLORS_RE, ''); };