New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.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
Version published
Weekly downloads
3.1K
15.76%
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

content-disposition

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