Sha256: 5a41f37486bea9ce839e524e0cc5b277a2ea17e15fea1f998ed3b818b19499fb
Contents?: true
Size: 364 Bytes
Versions: 13
Compression:
Stored size: 364 Bytes
Contents
/** * Contains helpers for working with vendor prefixes. */ declare module Vendor { /** * @returns The vendor prefix extracted from the input string. */ function prefix(prop: string): string; /** * @returns The input string stripped of its vendor prefix. */ function unprefixed(prop: string): string; } export default Vendor;
Version data entries
13 entries across 4 versions & 2 rubygems