Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
3.2 KiB
3.2 KiB
fault
Functional errors with formatted output.
Install
npm:
npm install fault
Use
var fault = require('fault')
throw fault('Hello %s!', 'Eric')
Yields:
Error: Hello Eric!
at FormattedError (~/node_modules/fault/index.js:30:12)
at Object.<anonymous> (~/example.js:3:7)
β¦
Or, format a float in a type error:
var fault = require('fault')
throw fault.type('Who doesnβt like %f? \uD83C\uDF70', Math.PI)
Yields:
TypeError: Who doesnβt like 3.141593? π°
at Function.FormattedError [as type] (~/node_modules/fault/index.js:30:12)
at Object.<anonymous> (~/example.js:3:7)
API
fault(format?[, values...])
Create an error with a printf-like formatted message.
Parameters
format
(string
, optional)values
(*
, optional)
Formatters
%s
β String%b
β Binary%c
β Character%d
β Decimal%f
β Floating point%o
β Octal%x
β Lowercase hexadecimal%X
β Uppercase hexadecimal%
followed by any other character, prints that character
See samsonjs/format
for argument parsing.
Returns
An instance of Error
.
Other errors
fault.eval(format?[, values...])
β EvalErrorfault.range(format?[, values...])
β RangeErrorfault.reference(format?[, values...])
β ReferenceErrorfault.syntax(format?[, values...])
β SyntaxErrorfault.type(format?[, values...])
β TypeErrorfault.uri(format?[, values...])
β URIError
fault.create(Constructor)
Factory to create instances of ErrorConstructor
with support for formatting.
Used internally to wrap the global error constructors, exposed for custom
errors.
Returns a function just like fault
.
License
MIT Β© Titus Wormer