
Security News
Critical Security Vulnerability in React Server Components
React disclosed a CVSS 10.0 RCE in React Server Components and is advising users to upgrade affected packages and frameworks to patched versions now.
agreement-schedules-exhibits-numbering
Advanced tools
number traditional agreements with schedules and exhibits
number traditional agreements with schedules and exhibits
This package is part of the abstract-numbering family of packages.
var ase = require('agreement-schedules-exhibits-numbering')
The package is a numbering scheme as described by abstract-numbering.
The first child form is the agreement:
var assert = require('assert')
assert.deepStrictEqual(
ase(
[
{
series: { number: 1, of: 5 },
element: { number: 1, of: 4 }
}
],
true
),
'Agreement.'
)
assert.deepStrictEqual(
ase(
[
{
series: { number: 1, of: 1 },
element: { number: 1, of: 1 }
}
],
false
),
'the Agreement'
)
Children of the agreement are numbered by outline-numbering:
assert.deepStrictEqual(
ase(
[
{
series: { number: 1, of: 1 },
element: { number: 1, of: 1 }
},
{
series: { number: 1, of: 1 },
element: { number: 1, of: 1 }
}
]
),
'Section\u00a01 of the Agreement'
)
assert.deepStrictEqual(
ase(
[
{
series: { number: 1, of: 1 },
element: { number: 1, of: 1 }
},
{
series: { number: 1, of: 1 },
element: { number: 1, of: 1 }
},
{
series: { number: 1, of: 1 },
element: { number: 1, of: 1 }
}
]
),
'Section\u00a01(a) of the Agreement'
)
assert.deepStrictEqual(
ase(
[
{
series: { number: 1, of: 1 },
element: { number: 1, of: 1 }
},
{
series: { number: 1, of: 1 },
element: { number: 1, of: 1 }
}
],
true
),
'1.'
)
The second child form contains schedules to the agreement:
assert.deepStrictEqual(
ase(
[
{
series: { number: 1, of: 5 },
element: { number: 2, of: 2 }
}
],
true
),
'Schedules.'
)
assert.deepStrictEqual(
ase(
[
{
series: { number: 1, of: 1 },
element: { number: 2, of: 2 }
}
],
false
),
'Schedules to the Agreement'
)
Each of its children is a schedule:
assert.deepStrictEqual(
ase(
[
{
series: { number: 1, of: 1 },
element: { number: 2, of: 2 }
},
{
series: { number: 1, of: 1 },
element: { number: 1, of: 1 }
}
],
true
),
'Schedule\u00a01.'
)
The children of each schedule are numbered by outline-numbering as well:
assert.deepStrictEqual(
ase(
[
{
series: { number: 1, of: 1 },
element: { number: 2, of: 2 }
},
{
series: { number: 1, of: 1 },
element: { number: 1, of: 1 }
},
{
series: { number: 1, of: 1 },
element: { number: 1, of: 1 }
}
],
false
),
'Section\u00a01 of Schedule\u00a01'
)
Any other child form is an exhibit:
assert.deepStrictEqual(
ase(
[
{
series: { number: 1, of: 1 },
element: { number: 3, of: 3 }
}
],
true
),
'Exhibit\u00a01.'
)
assert.deepStrictEqual(
ase(
[
{
series: { number: 1, of: 2 },
element: { number: 3, of: 3 }
}
],
true
),
'Exhibit\u00a0A-1.'
)
assert.deepStrictEqual(
ase(
[
{
series: { number: 11, of: 11 },
element: { number: 13, of: 13 }
}
],
true
),
'Exhibit\u00a0K-13.'
)
assert.deepStrictEqual(
ase(
[
{
series: { number: 1, of: 1 },
element: { number: 3, of: 3 }
}
],
false
),
'Exhibit\u00a01'
)
The children of each exhibit are numbered by outline-numbering:
assert.deepStrictEqual(
ase(
[
{
series: { number: 1, of: 1 },
element: { number: 3, of: 3 }
},
{
series: { number: 1, of: 1 },
element: { number: 1, of: 1 }
}
],
false
),
'Section\u00a01 of Exhibit\u00a01'
)
assert.deepStrictEqual(
ase(
[
{
series: { number: 1, of: 1 },
element: { number: 3, of: 3 }
},
{
series: { number: 1, of: 1 },
element: { number: 1, of: 1 }
}
],
true
),
'1.'
)
FAQs
number traditional agreements with schedules and exhibits
The npm package agreement-schedules-exhibits-numbering receives a total of 359 weekly downloads. As such, agreement-schedules-exhibits-numbering popularity was classified as not popular.
We found that agreement-schedules-exhibits-numbering 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
React disclosed a CVSS 10.0 RCE in React Server Components and is advising users to upgrade affected packages and frameworks to patched versions now.

Research
/Security News
We spotted a wave of auto-generated “elf-*” npm packages published every two minutes from new accounts, with simple malware variants and early takedowns underway.

Security News
TypeScript 6.0 will be the last JavaScript-based major release, as the project shifts to the TypeScript 7 native toolchain with major build speedups.