mirror of https://gitee.com/bigwinds/arangodb
20 lines
553 B
Plaintext
20 lines
553 B
Plaintext
/* 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) {
|