git ssb

0+

cel-desktop / ssb-pkg



Tree: c5c7a8ffadbd51aa28a5f3f096fe43f69405da44

Files: c5c7a8ffadbd51aa28a5f3f096fe43f69405da44 / test / test-79-npm / any-promise / any-promise.js

184 bytesRaw
1'use strict';
2
3var Promise = require('any-promise');
4
5function p () {
6 return new Promise((resolve) => {
7 resolve('ok');
8 });
9}
10
11p().then((result) => {
12 console.log(result);
13});
14

Built with git-ssb-web