Skip to content
This repository was archived by the owner on Feb 16, 2023. It is now read-only.

Commit 283af9d

Browse files
committed
Clarify module intent in identifier name
1 parent ae46b83 commit 283af9d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/index.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import Debug from 'debug'
33
import * as resizeEvent from './on-resize'
44
import * as Layout from './layout'
55
import throttle from 'lodash.throttle'
6-
import cssvp from 'css-vendor'
6+
import cssVendor from 'css-vendor'
77
import { isServer, window } from './platform'
88
import ReactLayerMixin from './react-layer-mixin'
99
import { arrayify, assign, findDOMNode, clientOnly } from './utils'
@@ -13,14 +13,14 @@ import PopoverTip from './popover-tip'
1313

1414
const log = Debug(`react-popover`)
1515

16-
const supportedCSSValue = clientOnly(cssvp.supportedValue)
16+
const supportedCSSValue = clientOnly(cssVendor.supportedValue)
1717

1818
const jsprefix = (x) => (
19-
`${cssvp.prefix.js}${x}`
19+
`${cssVendor.prefix.js}${x}`
2020
)
2121

2222
const cssprefix = (x) => (
23-
`${cssvp.prefix.css}${x}`
23+
`${cssVendor.prefix.css}${x}`
2424
)
2525

2626
const cssvalue = (prop, value) => (

0 commit comments

Comments
 (0)