Typed-based handling for missed function arguments
Install
$ npm install targ
Can be used for browsers. IE10+ and other modern browsers which supports function's name
property.
Simple handling
targ = require 'targ' = targ arguments str: String num: Number bool: Boolean callback: Function consolelog strnumboolcallback func 'text'123true-> # 'text', 123, true, function() {} func 123-> # undefined, 123, undefined, function() {} func 'text'true # 'text', undefined, true, undefined
Handling with defaults
targ = require 'targ' = targ arguments str: String'missed' num: Number0 bool: Booleanfalse callback: Function-> consolelog strnumboolcallback func 'text'123true-> # 'text', 123, true, function() {} func 123-> # 'missed', 123, false, function() {} func 'text'true # 'text', 0, true, function() {}
Custom Classes
targ = require 'targ'Type = -> = targ arguments obj: Type callback: Function consolelog objcallback obj = obj.prop = 'value'func obj-> # { prop: 'value' }, function() {} func # undefined, undefined
(The MIT License)
Copyright (c) 2009-2011 Andrey Yamanov tenphi@gmail.com
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.