UNPKG
apex-nitro
Version:
beta (5.0.0-1)
latest (5.0.2)
5.0.2
5.0.1
5.0.0
5.0.0-1
4.2.0-beta.1
4.1.6
4.1.5
4.1.4
4.1.3
4.1.2
4.1.1
4.1.0
4.1.0-beta.4
4.1.0-beta.3
4.1.0-beta.2
4.1.0-beta.1
4.0.0
4.0.0-beta.5
4.0.0-beta.4
4.0.0-beta.3
4.0.0-beta.2
4.0.0-beta.1
Your essential APEX companion
github.com/OraOpenSource/apex-nitro
OraOpenSource/apex-nitro
apex-nitro
/
examples
/
demo-error-webpack
/
src
/
js
/
ajax.js
22 lines
(20 loc)
•
284 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
module
.
exports
= {
// Function returning a Promise (wait)
sync
(
) {
return
apex.
server
.
process
(
'wait'
, {
x01
:
5
}, {
async
:
false
} ); },
// Function returning a Promise (wait)
async
(
) {
return
apex.
server
.
process
(
'wait'
, {
x01
:
5
} ); } };