Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Kirill Smelkov
jio
Commits
2d2e48d4
Commit
2d2e48d4
authored
11 years ago
by
Tristan Cavelier
Browse files
Options
Download
Email Patches
Plain Diff
Promise.js error added
parent
544b9ac3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
+20
-0
src/jio/core/Promise.js
src/jio/core/Promise.js
+20
-0
No files found.
src/jio/core/Promise.js
View file @
2d2e48d4
...
...
@@ -49,6 +49,26 @@ Promise.when = function (item, onSuccess, onError, onProgress) {
return
p
;
};
/**
* error(value, [onError]): Promise
*
* Return value as first parameter of the promise answer. The method returns a
* rejected promise.
*
* Promise.error('a').then(null, console.log); // shows 'a'
*
* @method error
* @static
* @param {Any} value The value to use
* @param {Function} [onError] the callback called on error
* @return {Promise} The promise
*/
Promise
.
error
=
function
(
value
,
onError
)
{
var
p
=
new
Promise
().
fail
(
onError
);
p
.
defer
().
reject
(
value
);
return
p
;
};
////////////////////////////////////////////////////////////
// http://wiki.commonjs.org/wiki/Promises/B
// get(object, name)
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment