Package Exports
- assertf
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (assertf) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
assertf
Node's built-in assert
API augmented with message formatting printf-style.
Installation
npm install assertf
Examples
var assert = require('assertf')
var apples = 2
var bananas = 3
// message vars are automatically positioned appropriately
assert.equal(apples, bananas, 'Oops, %d does not equal %d!')
// => AssertionError: Oops, 2 does not equal 3!
// you can also supply your own substitutions
assert.equal(apples, bananas, 'We have %d bananas, but only %d apples.',
bananas, apples)
// => AssertionError: We have 3 bananas, but only 2 apples.
License
MIT