chirashijs/chirashi

View on GitHub
lib/_internals/_getLength.js

Summary

Maintainability
A
0 mins
Test Coverage
import getProp from '../dom/getProp'

export default function _getLength (element, direction, offset) {
  return getProp(element, (offset ? 'offset' : 'client') + direction)
}