UNPKG

vega-util

Version:

JavaScript utilities for Vega.

10 lines (8 loc) 218 B
import peek from './peek.js'; /** * Return the numerical span of an array: the difference between * the last and first values. */ export default function(array) { return array && (peek(array) - array[0]) || 0; }