Skip to content

Instantly share code, notes, and snippets.

@sonthonaxrk
Created April 10, 2015 14:24
Show Gist options
  • Save sonthonaxrk/5f055395803770beb730 to your computer and use it in GitHub Desktop.
Save sonthonaxrk/5f055395803770beb730 to your computer and use it in GitHub Desktop.
function JSONResourceCollection(source, Type) {
if (Type.prototype.isPrototypeOf(JSONResource.prototype)) {
this.Type = Type;
} else {
// this get's thrown
throw "The Type must be a subclass of JSONResource";
}
}
JSONResourceCollection("http://example.com/", JSONResource);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment