/* ansi_up.js * author : Dru Nelson * license : MIT * http://github.com/drudru/ansi_up */ (function (root, factory) { if (typeof define === 'function' && define.amd) { // AMD. Register as an anonymous module. define(['exports'], factory); } else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') { // CommonJS factory(exports); } else { // Browser globals var exp = {}; factory(exp); root.AnsiUp = exp.default; } }(this, function (exports) {