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

content-disposition-attachment

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

content-disposition-attachment

A library to parse "attachment"s in Content-Disposition.

  • 0.1.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2.1K
increased by21.41%
Maintainers
1
Weekly downloads
 
Created
Source

content-disposition-attachment

Build Status

A library to parse "attachment"s in Content-Disposition.

Installation

npm install content-disposition-attachment

Getting Started

parse

Parse a Content-Disposition.

If Content-Disposition is not "attachment", it returns { attachment: false }; otherwise, it returns { attachment: true } along with parsed parameters.

If errors occur when parsing parameters, a ParseError will be thrown.

Examples

const ContentDispositionAttachment = require('content-disposition-attachment')

ContentDispositionAttachment.parse('inline')
// => { attachment: false }

ContentDispositionAttachment.parse('attachment; filename=foo.html; foo=bar')
// => { attachment: true, filename: 'foo.html', foo: 'bar' }

ContentDispositionAttachment.parse('attachment; foo')
// => ContentDispositionAttachment.ParseError: expect '='

Keywords

FAQs

Package last updated on 07 Feb 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