Skip to content

Commit

Permalink
remove unused function
Browse files Browse the repository at this point in the history
  • Loading branch information
daiyam committed Sep 24, 2016
1 parent cbb9d61 commit 54b9138
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 12 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,15 @@

The default runtime for **kaoscript**.

Dodumentation is available at [kaoscript](https://github.com/kaoscript/kaoscript).
Documentation available at [kaoscript](https://github.com/kaoscript/kaoscript).

Changelog
---------

### 0.3.0

- remove function `vexists`

### 0.2.0

- remove use of native classes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@kaoscript/runtime",
"description": "The default runtime for kaoscript",
"version": "0.2.0",
"version": "0.3.0",
"author": {
"name": "Baptiste Augrain",
"email": "daiyam@zokugun.org"
Expand Down
11 changes: 1 addition & 10 deletions src/runtime.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* runtime.js
* Version 0.1.0
* Version 0.3.0
* September 14th, 2016
*
* Copyright (c) 2016 Baptiste Augrain
Expand Down Expand Up @@ -583,15 +583,6 @@ var Type = {
else {
return type;
}
}, // }}}
vexists: function() { // {{{
for(var i = 0; i < arguments.length; i++) {
if(Type.isValue(arguments[i])) {
return arguments[i];
}
}

return null;
} // }}}
};

Expand Down

0 comments on commit 54b9138

Please sign in to comment.