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

@martin-pettersson/wp-get-file-data

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@martin-pettersson/wp-get-file-data

A port of the get_file_data method from WordPress used to extract parameters from header comment.

  • 0.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

wp-get-file-data

A port of the get_file_data method from WordPress used to extract parameters from header comment.

Usage

It's simple! Just require the module and use the provided methods.

var wpGetFileData = require('@martin-pettersson/wp-get-file-data');

// get the fields asynchronously
wpGetFileData.getFileData('some/file.php', function(err, fileData) {
    if (err) {
        // handle error
    }

    // ...
});

// get the fields synchronously
var fileData = wpGetFileData.getFileDataSync('some/file.css');

// ...

// fileData is an object containing the keys and trimmed values from the file header

Keywords

FAQs

Package last updated on 13 Mar 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