Skip to content

Instantly share code, notes, and snippets.

View ozbe's full-sized avatar
💡

Josh Aaseby ozbe

💡
View GitHub Profile
@ozbe
ozbe / linq.casefix.js
Last active December 14, 2015 06:38
Alias linq.js (http://linqjs.codeplex.com) prototype functions to lower camel case.
(function (Enumerable) {
"use strict";
var mediator = function (methodName) {
return function () {
return Enumerable.prototype[methodName].apply(this, arguments);
};
};
for (var propertyName in Enumerable.prototype) {