/**1* Copyright 2013 Facebook, Inc.2*3* Licensed under the Apache License, Version 2.0 (the "License");4* you may not use this file except in compliance with the License.5* You may obtain a copy of the License at6*7* http://www.apache.org/licenses/LICENSE-2.08*9* Unless required by applicable law or agreed to in writing, software10* distributed under the License is distributed on an "AS IS" BASIS,11* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.12* See the License for the specific language governing permissions and13* limitations under the License.14*/15var E = String.fromCharCode(27);1617function wrap(options, text) {18return E + '[' + options + 'm' + text + E + '[m';19}2021function bold(text) {22return wrap('1', text);23}2425function underline(text) {26return wrap('4', text);27}2829function awesome(text) {30return wrap('1;4;7;5;42;35', text);31}3233var colors = {34black: 0,35red: 1,36green: 2,37yellow: 3,38blue: 4,39magenta: 5,40cyan: 6,41white: 742};43function color(name, text) {44return E + '[' + (colors[name] + 30) + 'm' + text + E + '[39m';45}4647exports.bold = bold;48exports.underline = underline;49exports.awesome = awesome;50exports.color = color;515253