Skip to content

Instantly share code, notes, and snippets.

@sbisbee
sbisbee / gist:1352319
Created November 9, 2011 18:13
Sag contribution guide

Contributing to Sag

First off - you rock! Community contributions are so awesome and have resulted in some awesome features landing in Sag.

This guide is meant to make it as easy as possible to contribute your code to Sag.

Sending the Contribution

@rwaldron
rwaldron / proxy-typed-object.js
Created September 13, 2011 20:17
TypedObject Constructor
(function( global ) {
global.TypedObject = function( obj ) {
var keys = Object.keys( obj || {} ),
len = keys.length,
data = {},
typeOf = {
// prop: type
},