Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
80737 views
1
// Generated by CoffeeScript 1.9.1
2
var helpers;
3
4
helpers = require('coffee-script/lib/coffee-script/helpers');
5
6
helpers.isCoffee = function(filepath) {
7
return /\.((lit)?coffee|coffee\.md|cjsx)$/.test(filepath);
8
};
9
10
helpers.hasCJSXExtension = function(filepath) {
11
return /\.(cjsx)$/.test(filepath);
12
};
13
14
helpers.hasCJSXPragma = function(src) {
15
return /^\s*#\s*@(cjsx)/.test(src);
16
};
17
18
module.exports = helpers;
19
20