Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@luxcium/object-with-expectations
Advanced tools
Let you merge objects with expected asyncronious results and normal properties.
Let you merge objects with expected asyncronious results and normal properties.
pnpm add @luxcium/object-with-expectations
import { mixBases, mixExpected } from '@luxcium/object-with-expectations';
// Objects witout an « expected » property.
const onlyFoo = {
foo: 'machin',
};
const onlyBar = {
bar: 'bidule',
};
// Objects with an « expected » property that contain
// the async values.
const foo = {
foo: 'machin',
expected: { bolo: (async () => 'await bolo')() },
};
const bar = {
bar: 'bidule',
expected: { toto: (async () => 'await toto')() },
};
expected
property.const withBaseOnly = {
...mixBases<any, any, { foo: string }, { bar: string }>(onlyFoo, onlyBar),
};
console.log('at withBaseOnly:', withBaseOnly);
// at withBaseOnly: { foo: 'machin', bar: 'bidule' }
expected
property.const withExpectedProperty = { ...mixBases(foo, bar) };
console.log('at withExpectedProperty:', withExpectedProperty);
// at withExpectedProperty: { foo: 'machin', bar: 'bidule' }
expeceted
object./**
* Testing the mixExpected keeping expected sub module
* (property/object) but discaring base properties.
* @example
* const mergeExpected: {
* expected: {
* bolo: Promise<string>;
* } & {
* toto: Promise<string>;
* };
* }
*/
const mergeExpected = mixExpected(foo, bar);
console.log('at mergeExpected:', mergeExpected);
// at mergeExpected: {
// expected: { bolo: Promise { 'await bolo' }, toto: Promise { 'await toto' } }
// }
Gradually reshaping the output type infered keeping the same value shape as expected.
/**
* Testing the mixExpected keeping expected sub module
* (property/object) but discaring base properties.
* @remarks
* Gradually reshaping the output type infered keeping the same value.
* @example
* const expected: {
* bolo: Promise<string>;
* } & {
* toto: Promise<string>;
* }
*/
const expected = mergeExpected.expected;
// or const { expected } = mergeExpected;
console.log('at expected:', expected);
// at expected: { bolo: Promise { 'await bolo' }, toto: Promise { 'await toto' } }
Giving its final shape (type wise) for the outpput
/**
* Testing the mixExpected keeping expected sub module
* (property/object) but discaring base properties.
* @remarks
* Giving its final shape (type wise) for the outpput
* @example
* const expectedResult: {
* expected: {
* bolo: Promise<string>;
* toto: Promise<string>;
* };
* }
*/
const expectedResult = { expected: { ...expected } };
console.log('at expectedResult:', expectedResult);
// at expectedResult: {
// expected: { bolo: Promise { 'await bolo' }, toto: Promise { 'await toto' } }
// }
/**
* Merging both part into a new single object
* @example
* const mergingAll: {
* expected: {
* bolo: Promise<string>;
* toto: Promise<string>;
* };
* foo: string;
* bar: string;
* }
*/
const mergingAll = { ...expectOnly, ...expectedFinal };
console.log('at mergingAll:', mergingAll);
// at mergingAll: {
// foo: 'machin',
// bar: 'bidule',
// expected: { bolo: Promise { 'await bolo' }, toto: Promise { 'await toto' } }
// }
† Scientia es lux principium✨ ™
FAQs
Let you merge objects with expected asyncronious results and normal properties.
The npm package @luxcium/object-with-expectations receives a total of 1 weekly downloads. As such, @luxcium/object-with-expectations popularity was classified as not popular.
We found that @luxcium/object-with-expectations demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.