![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
seng-disposable
Advanced tools
seng-disposable provides a basic framework for disposable classes and objects. Disposable is used as a basis for many Seng libraries because it provides a common interface which can be passed around to be disposed at a later time.
npm i -S seng-disposable
Or grab one of the following files from the /dist/
folder for manual use:
window.SengDisposable
)import Disposable from 'seng-disposable';
class AsyncThinger extends Disposable {
interval:number;
start() {
this.interval = setInterval(() => console.log('hello world!'));
}
dispose() {
if (this.interval !== void 0) {
clearInterval(this.interval);
this.interval = void 0;
}
super.dispose();
}
}
// since all objects implementing IDisposable provide the same way to dispose it, we can simply create an array
// that contains IDisposable objects, without having to care about what they actually are.
let disposables:Array<IDisposable> = [];
disposables.push(new AsyncThinger());
disposables.push(new AsyncThinger());
disposables.push(new AsyncThinger());
disposables.push(new AsyncThinger());
disposables.forEach(disposable => disposable.dispose());
View the generated documentation.
In order to build seng-disposable, ensure that you have Git and Node.js installed.
Clone a copy of the repo:
git clone https://github.com/MediaMonks/seng-disposable.git
Change to the seng-disposable directory:
cd seng-disposable
Install dev dependencies:
npm install
Use one of the following main scripts:
npm run build # build this project (done on install)
npm run typings # install .d.ts dependencies (done on install)
npm test # run the tests
npm validate # runs validation scripts, including test, lint and doc
npm run lint # run tslint on this project
npm run doc # generate typedoc and yuidoc documentation
npm run typescript-npm # just compile the typescript output used in the npm module
When installing this module, it adds a pre-commit hook, that runs the validate
and build
scripts before committing, so you can be sure that everything
checks out and all files that should be committed are generated.
View CONTRIBUTING.md
View CHANGELOG.md
View AUTHORS.md
MIT © MediaMonks
FAQs
Disposable provides a common interface for disposing of objects
We found that seng-disposable 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.