UNPKG

orvex

Version:

A lightweight TypeScript library to create and manipulate HTML elements with ease.

11 lines (10 loc) 249 B
export function autocapitalize(obj, val) { if (val != "off" && val != "none" && val != "on" && val != "sentences" && val != "words" && val != "characters") return; obj.contentEditable = val; }