You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
553 B
Plaintext
20 lines
553 B
Plaintext
|
2 years ago
|
/* 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) {
|