Add .xsjs and .xsjslib as JavaScript file extension

.xsjs and .xsjslib is used to denote server-side JavaScript files in SAP
HANA XS
This commit is contained in:
Christian Theilemann
2014-06-22 15:14:46 +02:00
parent 5e797b548c
commit f92fed60f8
3 changed files with 35 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
/* simple hana xs demo library, which can be used by multiple endpoints */
function multiply(x, y) {
return x * y;
}
function add(x, y) {
return x + y;
}