Socket
Socket
Sign inDemoInstall

unist-util-generated

Package Overview
Dependencies
0
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    unist-util-generated

Check if a Unist node is generated


Version published
Weekly downloads
4.3M
decreased by-1.35%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

unist-util-generated Build Status Coverage Status

Check if a Unist node is generated.

Installation

npm:

npm install unist-util-generated

Usage

var generated = require('unist-util-generated');

generated({}); //=> true

generated({
  position: {start: {}, end: {}}
}); //=> true

generated({
  position: {
    start: {line: 1, column: 1},
    end: {line: 1, column: 2}
  }
}); //=> false

API

generated(node)

Detect if node is generated.

Parameters
  • node (Node) — Node to check.
Returns

boolean — Whether node is generated.

License

MIT © Titus Wormer

Keywords

FAQs

Last updated on 20 Nov 2016

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc