Skip to content

Instantly share code, notes, and snippets.

@petsel
Last active December 16, 2015 05:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save petsel/5385197 to your computer and use it in GitHub Desktop.
Save petsel/5385197 to your computer and use it in GitHub Desktop.
Trait example for "Introspective" that implements only two methods [isFunction] and [isCallable]
/**
* see also / derived from:
* [https://github.com/petsel/composable/blob/master/src/components/Introspective/Introspective.isFunction-isCallable.js]
* [https://github.com/petsel/composable/blob/master/src/composites/Function/Function.isFunction-isCallable.js]
*/
var Introspective_isFunction_isCallable = (function () {
var
Trait, // the "Introspective_isFunction_isCallable" Trait Module.
testCallability = function (type) {
var callability = true;
try {
type();
} catch (exc) {
callability = false;
}
return callability;
},
/**
* check back with the so far three iterations of the jsperf test
* [http://jsperf.com/iscallable-isfunction-isfunctiontype/3]
*/
isCallable = function (type) {
return (type ? testCallability(type) : !!type);
},
isFunction = function (type) {
return ((typeof type == "function") && (typeof type.call == "function") && (typeof type.apply == "function"));
}
;
Trait = function () {
/**
* implementing the "Introspective_isFunction_isCallable" Trait Module.
*/
this.isCallable = isCallable;
this.isFunction = isFunction;
};
return Trait;
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment