JSPM

vendor-prefix

0.1.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2096
  • Score
    100M100P100Q156106F
  • License MIT

vendor prefix css attributes

Package Exports

  • vendor-prefix

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (vendor-prefix) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

vendor-prefix Build Status Mocha Saucelabs Tests Status

add a vendor prefix to a css attribute

This is a fork from https://github.com/jkroso/prefix which is a fork of https://github.com/pgherveou/prefix

Usage

$ npm install vendor-prefix
var prefix = require('vendor-prefix');

API

prefix(key)

Prefix key. This function memoizes its results so you don't need to worry about any performance issues, just treat it like a map.

prefix('transform'); // webkitTransform
prefix('color'); // color

Throw an error if the given string is not a css property.

dash(key)

create a dasherize version of a vendor prefix

prefix.dash('transform'); // -webkit-transform
prefix.dash('color'); // color
prefix.dash('background-color'); // background-color

Throw an error if the given string is not a css property.

Run the tests

$ npm install
$ npm run build
Selenium Tests Status

open a browser at test/index.html