Skip to content

Commit

Permalink
First Release
Browse files Browse the repository at this point in the history
  • Loading branch information
ncurrier committed Sep 4, 2017
0 parents commit a9d618f
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
Empty file added .gitignore
Empty file.
Empty file added LICENSE
Empty file.
Empty file added README.md
Empty file.
16 changes: 16 additions & 0 deletions vanilla.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
function Vanilla(){

var version = '1.0.0';
var releaseName = 'code-happy';

Object.defineProperty(this, "version", {
get: function() { return version; }
});

Object.defineProperty(this, "releaseName", {
get: function() { return releaseName; }
});

return this;
};

0 comments on commit a9d618f

Please sign in to comment.