UNPKG

snabbdom

Version:

A virtual DOM library with focus on simplicity, modularity, powerful features and performance.

5 lines (4 loc) 155 B
export const array = Array.isArray; export function primitive(s: any): s is (string | number) { return typeof s === 'string' || typeof s === 'number'; }