Skip to content

Commit 54b9138

Browse files
committed
remove unused function
1 parent cbb9d61 commit 54b9138

File tree

3 files changed

+7
-12
lines changed

3 files changed

+7
-12
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,15 @@
55

66
The default runtime for **kaoscript**.
77

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

1010
Changelog
1111
---------
1212

13+
### 0.3.0
14+
15+
- remove function `vexists`
16+
1317
### 0.2.0
1418

1519
- remove use of native classes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@kaoscript/runtime",
33
"description": "The default runtime for kaoscript",
4-
"version": "0.2.0",
4+
"version": "0.3.0",
55
"author": {
66
"name": "Baptiste Augrain",
77
"email": "daiyam@zokugun.org"

src/runtime.js

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* runtime.js
3-
* Version 0.1.0
3+
* Version 0.3.0
44
* September 14th, 2016
55
*
66
* Copyright (c) 2016 Baptiste Augrain
@@ -583,15 +583,6 @@ var Type = {
583583
else {
584584
return type;
585585
}
586-
}, // }}}
587-
vexists: function() { // {{{
588-
for(var i = 0; i < arguments.length; i++) {
589-
if(Type.isValue(arguments[i])) {
590-
return arguments[i];
591-
}
592-
}
593-
594-
return null;
595586
} // }}}
596587
};
597588

0 commit comments

Comments
 (0)