coffee-react-transform
Advanced tools
Comparing version 3.2.0 to 3.3.0
@@ -1,2 +0,2 @@ | ||
// Generated by CoffeeScript 1.9.1 | ||
// Generated by CoffeeScript 1.9.3 | ||
var extend, flatten, last, ref, ref1, repeat, syntaxErrorToString; | ||
@@ -3,0 +3,0 @@ |
@@ -1,2 +0,2 @@ | ||
// Generated by CoffeeScript 1.9.1 | ||
// Generated by CoffeeScript 1.9.3 | ||
var $, BOM, CJSX_ESC_COMMENT, CLOSING_TAG, COMMENT, HEREDOC, HEREGEX, JSTOKEN, OPENING_TAG, PRAGMA, ParseTreeBranchNode, ParseTreeLeafNode, Parser, REGEX, SIMPLESTR, TAG_ATTRIBUTES, TRAILING_SPACES, WHITESPACE, compact, count, invertLiterate, last, ref, repeat, starts, throwSyntaxError; | ||
@@ -3,0 +3,0 @@ |
@@ -1,2 +0,2 @@ | ||
// Generated by CoffeeScript 1.9.1 | ||
// Generated by CoffeeScript 1.9.3 | ||
var $, SPACES_ONLY, Serialiser, TEXT_LEADING_WHITESPACE, TEXT_TRAILING_WHITESPACE, WHITESPACE_ONLY, componentClassTagConvention, containsNewlines, entityDecode, exports, find, firstNonWhitespaceChild, genericBranchSerialiser, genericLeafSerialiser, joinList, last, nodeSerialisers, ref, serialise, stringEscape; | ||
@@ -3,0 +3,0 @@ |
@@ -38,16 +38,3 @@ | ||
if (characterCode > 127) { | ||
var c = characterCode; | ||
var a4 = c % 16; | ||
c = ~~(c/16); | ||
var a3 = c % 16; | ||
c = ~~(c/16); | ||
var a2 = c % 16; | ||
c = ~~(c/16); | ||
var a1 = c % 16; | ||
return ["\\u", hex[a1], hex[a2], hex[a3], hex[a4]].join(''); | ||
} else { | ||
return inputChar; | ||
} | ||
return inputChar; | ||
} |
@@ -1,2 +0,2 @@ | ||
// Generated by CoffeeScript 1.9.1 | ||
// Generated by CoffeeScript 1.9.3 | ||
module.exports = { | ||
@@ -3,0 +3,0 @@ ROOT: 'ROOT', |
@@ -1,2 +0,2 @@ | ||
// Generated by CoffeeScript 1.9.1 | ||
// Generated by CoffeeScript 1.9.3 | ||
var Parser, serialise; | ||
@@ -3,0 +3,0 @@ |
@@ -12,3 +12,3 @@ { | ||
"author": "James Friend", | ||
"version": "3.2.0", | ||
"version": "3.3.0", | ||
"licenses": [ | ||
@@ -15,0 +15,0 @@ { |
# Coffeescript React JSX Transformer | ||
Provides support for an equivalent of JSX syntax in Coffeescript (called CJSX) so you can write your Facebook React components with the full awesomeness of Coffeescript. | ||
Provides support for an equivalent of JSX syntax in Coffeescript (called CJSX) so you can write your Facebook React components with the full awesomeness of Coffeescript. [Try it out](https://jsdf.github.io/coffee-react-transform/). | ||
@@ -5,0 +5,0 @@ #### Example |
48054
1355