Skip to content

Common logic to process WordPress.com API responses into JS Error objects

Notifications You must be signed in to change notification settings

Automattic/wp-error

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

wp-error

Common logic to process WordPress.com API responses into JS Error objects

Creates a JavaScript Error instance, with properties copied over from the given object, and HTTP response status interpreted.

Installation

Install wp-error using npm:

$ npm install --save wp-error

Examples

var err = new WPError({
  error: 'processing_failed',
  error_description: 'Invalid upload format',
);
err.toString();
// "ProcessingFailedError: Invalid upload format"

License

MIT – Copyright Automattic 2016

About

Common logic to process WordPress.com API responses into JS Error objects

Resources

Stars

Watchers

Forks

Packages

No packages published