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

webidl-conversions

Package Overview
Dependencies
Maintainers
2
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

webidl-conversions

Implements the WebIDL algorithms for converting to and from JavaScript values

  • 4.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
79M
increased by5.32%
Maintainers
2
Weekly downloads
 
Created

What is webidl-conversions?

The webidl-conversions npm package is used to convert JavaScript values to WebIDL types, as specified in the WebIDL specification. It is often used in the context of web development when implementing interfaces defined in WebIDL that need to interact with JavaScript code.

What are webidl-conversions's main functionalities?

Converting basic types

Converts a JavaScript string to a WebIDL 'long' type.

const conversions = require('webidl-conversions');
let myValue = '123';
let convertedValue = conversions.long(myValue);

Converting with options

Converts a JavaScript string to a WebIDL 'long' type with clamping enabled, which means the value will be clamped to the nearest allowed value if it's out of range.

const conversions = require('webidl-conversions');
let myValue = '123';
let convertedValue = conversions.long(myValue, { clamp: true });

Handling nullable types

Converts a null value to a WebIDL 'DOMString' type, treating null as an empty string.

const conversions = require('webidl-conversions');
let myValue = null;
let convertedValue = conversions.DOMString(myValue, { treatNullAsEmptyString: true });

Other packages similar to webidl-conversions

Keywords

FAQs

Package last updated on 20 Feb 2017

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