奇点
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
zhangsiyu 8c114f05b0 12 3 years ago
..
cjs 12 3 years ago
dist 12 3 years ago
es 12 3 years ago
scripts 12 3 years ago
src 12 3 years ago
test 12 3 years ago
CHANGELOG.md 12 3 years ago
CONTRIBUTING.md 12 3 years ago
LICENSE 12 3 years ago
README.md 12 3 years ago
index.html 12 3 years ago
package.json 12 3 years ago

README.md

@videojs/vhs-utils

vhs-utils serves two purposes:

  1. It extracts objects and functions shared throughout @videojs/http-streaming code to save on package size. See the original @videojs/http-streaming PR for details.
  2. It exports generic functions from VHS that may be useful to plugin authors.

Installation

npm install --save @videojs/vhs-utils

Usage

All utility functions are published under dist and can be required/imported like so:

es import using es dist

import resolveUrl from '@videojs/vhs-utils/es/resolve-url';

cjs import using cjs dist

const resolveUrl = require('@videojs/vhs-utils/cjs/resolve-url');

depricated cjs dist

const resolveUrl = require('@videojs/vhs-utils/dist/resolve-url');