forked from enviPath/enviPy
Current Dev State
This commit is contained in:
12
static/js/ketcher2/node_modules/handlebars-wax/test/fixtures/helpers/factory/case.js
generated
vendored
Normal file
12
static/js/ketcher2/node_modules/handlebars-wax/test/fixtures/helpers/factory/case.js
generated
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
'use strict';
|
||||
|
||||
module.exports.register = function (hb) {
|
||||
hb.registerHelper({
|
||||
lower: function (str) {
|
||||
return str.toLowerCase();
|
||||
},
|
||||
upper: function (str) {
|
||||
return str.toUpperCase();
|
||||
}
|
||||
});
|
||||
};
|
||||
10
static/js/ketcher2/node_modules/handlebars-wax/test/fixtures/helpers/factory/flow.js
generated
vendored
Normal file
10
static/js/ketcher2/node_modules/handlebars-wax/test/fixtures/helpers/factory/flow.js
generated
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
'use strict';
|
||||
|
||||
module.exports.register = function (hb) {
|
||||
hb.registerHelper('lest', function (a, b) {
|
||||
return a !== b;
|
||||
});
|
||||
hb.registerHelper('when', function (a, b) {
|
||||
return a === b;
|
||||
});
|
||||
};
|
||||
2
static/js/ketcher2/node_modules/handlebars-wax/test/fixtures/helpers/function/empty.js
generated
vendored
Normal file
2
static/js/ketcher2/node_modules/handlebars-wax/test/fixtures/helpers/function/empty.js
generated
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
'use strict';
|
||||
module.exports = null;
|
||||
5
static/js/ketcher2/node_modules/handlebars-wax/test/fixtures/helpers/function/flow/lest.js
generated
vendored
Normal file
5
static/js/ketcher2/node_modules/handlebars-wax/test/fixtures/helpers/function/flow/lest.js
generated
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
|
||||
module.exports = function lest(a, b) {
|
||||
return a !== b;
|
||||
};
|
||||
5
static/js/ketcher2/node_modules/handlebars-wax/test/fixtures/helpers/function/flow/when.js
generated
vendored
Normal file
5
static/js/ketcher2/node_modules/handlebars-wax/test/fixtures/helpers/function/flow/when.js
generated
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
|
||||
module.exports = function when(a, b) {
|
||||
return a === b;
|
||||
};
|
||||
5
static/js/ketcher2/node_modules/handlebars-wax/test/fixtures/helpers/function/lower.js
generated
vendored
Normal file
5
static/js/ketcher2/node_modules/handlebars-wax/test/fixtures/helpers/function/lower.js
generated
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
|
||||
module.exports = function lower(str) {
|
||||
return str.toLowerCase();
|
||||
};
|
||||
5
static/js/ketcher2/node_modules/handlebars-wax/test/fixtures/helpers/function/upper.js
generated
vendored
Normal file
5
static/js/ketcher2/node_modules/handlebars-wax/test/fixtures/helpers/function/upper.js
generated
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
|
||||
module.exports = function upper(str) {
|
||||
return str.toUpperCase();
|
||||
};
|
||||
1
static/js/ketcher2/node_modules/handlebars-wax/test/fixtures/helpers/object/bogus.js
generated
vendored
Normal file
1
static/js/ketcher2/node_modules/handlebars-wax/test/fixtures/helpers/object/bogus.js
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
module.exports = true;
|
||||
10
static/js/ketcher2/node_modules/handlebars-wax/test/fixtures/helpers/object/case.js
generated
vendored
Normal file
10
static/js/ketcher2/node_modules/handlebars-wax/test/fixtures/helpers/object/case.js
generated
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
'use strict';
|
||||
|
||||
module.exports = {
|
||||
lower: function (str) {
|
||||
return str.toLowerCase();
|
||||
},
|
||||
upper: function (str) {
|
||||
return str.toUpperCase();
|
||||
}
|
||||
};
|
||||
10
static/js/ketcher2/node_modules/handlebars-wax/test/fixtures/helpers/object/flow.js
generated
vendored
Normal file
10
static/js/ketcher2/node_modules/handlebars-wax/test/fixtures/helpers/object/flow.js
generated
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
'use strict';
|
||||
|
||||
module.exports = {
|
||||
lest: function (a, b) {
|
||||
return a !== b;
|
||||
},
|
||||
when: function (a, b) {
|
||||
return a === b;
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user