mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/JiboViteDocs.git
synced 2026-06-16 10:56:33 +00:00
7 lines
214 B
JavaScript
7 lines
214 B
JavaScript
import { outside } from './outside'
|
|
|
|
// Determine if version is greater than all the versions possible in the range.
|
|
export function gtr (version, range, options) {
|
|
return outside(version, range, '>', options)
|
|
}
|