New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@elsevier/decorators

Package Overview
Dependencies
Maintainers
26
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@elsevier/decorators

A collection of TypeScript decorators

  • 1.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
7
increased by133.33%
Maintainers
26
Weekly downloads
 
Created
Source

decorators

Build Status

A collection of TypeScript decorators

Enabling support in tsconfig.json

To enable support for decorators you will need to add "experimentalDecorators": true to your tsconfig.json file.

Available decorators

enumerable

Example:

import { enumerable } from '@elsevier/decorators';

class Example {
    private isValid: boolean = true;

    @enumerable
    get validity(): boolean {
        return this.isValid;
    }
}

FAQs

Package last updated on 27 Sep 2018

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc