Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

get-amd-module-type

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

get-amd-module-type

Get the type of AMD module used for an AST node or within a file

  • 2.0.5
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1.3M
decreased by-6.82%
Maintainers
1
Weekly downloads
 
Created
Source

get-amd-module-type npm npm

Get the type of AMD module used for an AST node or within a file

npm install get-amd-module-type

Usage

var getType = require('get-amd-module-type');

// Async
getType('my/file.js', function(err, type) {

});

// Sync
var type = getType.sync('my/file.js');

// From source code
var type = getType.fromSource('define() {}');

// From an AST node
var type = getType.fromAST(node);

The returned type will be any of the following:

  • 'named': define('name', [deps], func)
  • 'deps': define([deps], func)
  • 'rem': define(function(require, exports, module){});
  • 'factory': define(function(require){})
  • 'nodeps': define({})
  • 'driver': require([deps], function)

Keywords

FAQs

Package last updated on 05 Sep 2016

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