Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download
Views: 50995
1
/**
2
*
3
*/
4
5
var ReactTools = require('react-tools');
6
7
module.exports = {
8
process: function(src) {
9
return ReactTools.transform(src, {harmony: true});
10
}
11
};
12
13