Skip to content

Instantly share code, notes, and snippets.

View ryugoo's full-sized avatar

Ryutaro Miyashita ryugoo

View GitHub Profile
@ryugoo
ryugoo / ltsv.js
Last active December 12, 2015 07:29 — forked from tomotaka/ltsv.dart
/*jslint devel:true */
/*global window, exports */
(function (root) {
"use strict";
// Prototype extension
if (!Array.prototype.removeAt) {
Array.prototype.removeAt = function (idx) {
if (typeof idx !== "number") {
throw new TypeError("removeAt argument is required Integer");