jasmine-headless-webkit/vendor/assets/javascripts/intense.coffee
2012-01-11 14:24:09 -05:00

29 lines
511 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
moveBack: (count = 1) -> "\033[#{count}D"
}
for method, code of Intense.methods
String.prototype[method] = code