prray
Version:
'Promisified' Array, comes with async method supports(such as mapAsync). And it is compatible with normal array.
29 lines (28 loc) • 1.26 kB
JavaScript
;
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
const ava_1 = require("ava");
const prray_1 = require("../src/prray");
ava_1.default('prray of', (t) => __awaiter(this, void 0, void 0, function* () {
const p1 = prray_1.Prray.of(1);
t.true(p1 instanceof prray_1.Prray);
t.is(p1[0], 1);
t.is(p1.length, 1);
const p2 = prray_1.Prray.of(1, 2, 3);
t.true(p2 instanceof prray_1.Prray);
t.is(p2[0], 1);
t.is(p2[1], 2);
t.is(p2[2], 3);
t.is(p2.length, 3);
const p3 = prray_1.Prray.of(undefined);
t.true(p3 instanceof prray_1.Prray);
t.is(p3[0], undefined);
t.is(p3.length, 1);
}));