jasmine-headless-webkit/jasmine/intense.coffee
2011-10-25 15:41:22 -04:00

28 lines
467 B
CoffeeScript

window.Intense = {
colors:
black: 0
red: 1
green: 2
yellow: 3
blue: 4
magenta: 5
cyan: 6
white: 7
methods:
foreground: (color) ->
if Intense.useColors
"\033[3#{Intense.colors[color]}m#{this}\033[0m"
else
this
bright: ->
if Intense.useColors
"\033[1m#{this}\033[0m"
else
this
useColors: true
}
for method, code of Intense.methods
String.prototype[method] = code