Skip to content

Instantly share code, notes, and snippets.

View cehoffman's full-sized avatar

Chris Hoffman cehoffman

  • Flock Freight
  • Alabama
View GitHub Profile
RegExp.prototype.toString: () ->
flags: {
i: @ignoreCase
g: @global
m: @multiline
}
# Firefox 3 specific flag
flags.y = @sticky if @sticky?
[on_flags, off_flags]: ['', '']