Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
R
rsvp.js
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Romain Courteaud
rsvp.js
Commits
7d62cdd2
Commit
7d62cdd2
authored
Jun 29, 2013
by
Stefan Penner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
RSVP.resolve now simply uses the internal resolution procedure
parent
7052bff8
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
26 deletions
+2
-26
lib/rsvp/resolve.js
lib/rsvp/resolve.js
+2
-26
No files found.
lib/rsvp/resolve.js
View file @
7d62cdd2
...
...
@@ -5,33 +5,9 @@ function objectOrFunction(x) {
}
function
resolve
(
thenable
)
{
if
(
thenable
instanceof
Promise
)
{
return
thenable
;
}
var
promise
=
new
Promise
(
function
(
resolve
,
reject
)
{
var
then
;
try
{
if
(
objectOrFunction
(
thenable
)
)
{
then
=
thenable
.
then
;
if
(
typeof
then
===
"
function
"
)
{
then
.
call
(
thenable
,
resolve
,
reject
);
}
else
{
return
new
Promise
(
function
(
resolve
,
reject
)
{
resolve
(
thenable
);
}
}
else
{
resolve
(
thenable
);
}
}
catch
(
error
)
{
reject
(
error
);
}
});
return
promise
;
}
export
{
resolve
};
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