mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-19 16:54:08 +10:00
Dropped underscore functions in favour of UFCS
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
//polyfill the _insert function
|
||||
fn _insert(self, k, v) {
|
||||
//polyfill the insert function
|
||||
fn insert(self, k, v) {
|
||||
var tmp1 = v;
|
||||
var tmp2;
|
||||
for (var i = k; i < self.length(); i++) {
|
||||
|
||||
Reference in New Issue
Block a user