Init from given files

This commit is contained in:
Pitchaya Boonsarngsuk
2017-11-07 21:33:16 +00:00
commit 61f2be55fe
45 changed files with 34460 additions and 0 deletions

8
src/constant.js Normal file
View File

@@ -0,0 +1,8 @@
/**
* @return a constant defined by x.
*/
export default function(x) {
return function() {
return x;
};
}