Skip to content

Instantly share code, notes, and snippets.

"use strict";
(function(global){
function isFunction(item) {
return typeof item === 'function';
}
function extend(target, options){
var copy;
if(typeof target !== "object" && !isFunction(target)){
target = {};
}