We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Aigle functions should return the same order (it is not ensured by engines).
(async () => { const obj1 = { task1: Aigle.delay(30, 1), task2: Aigle.delay(20, 2), task3: Aigle.delay(10, 3) }; const res1 = await Aigle.props(obj1); console.log(res1); // { task3: 3, task2: 2, task1: 1 } // ↓ // { task1: 1, task2: 2, task3: 3 } const obj2 = { task1: 1, task2: 2, task3: 3 }; const res2 = await Aigle.mapValues(obj2, val => Aigle.delay(val * 10, val)); console.log(res2); // { task3: 3, task2: 2, task1: 1 } // ↓ // { task1: 1, task2: 2, task3: 3 } })();
The text was updated successfully, but these errors were encountered:
feat(parallel): ensure object property order #46
608707b
feat(mapValues): ensure obbject property order #46
40b7db3
suguru03
No branches or pull requests
Aigle functions should return the same order (it is not ensured by engines).
The text was updated successfully, but these errors were encountered: