Skip to content
/ gimme Public

Quickly borrow sandboxed native Javascript objects for safe, prototypal fun.

Notifications You must be signed in to change notification settings

despeset/gimme

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

Gimme! lets you quickly borrow sandboxed native objects for safe, prototypal fun. Released under the MIT license

example:

var myString = gimme('String');
var foo = new myString( 'bar' );
var bar = 'hmm';
foo instanceof String                   // false
foo instanceof myString                 // true

myString.prototype.hello = 'world!';
foo.hello                               // 'world!'
bar.hello                               // undefined

also plays well with others:

var locallyScopedGimme = window.gimme.noConflict();

About

Quickly borrow sandboxed native Javascript objects for safe, prototypal fun.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published