UNPKG

orvex

Version:

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

6 lines (5 loc) 154 B
export function contenteditable(obj, val) { if (val != "true" && val != "false" && val != "inherit") return; obj.contentEditable = val; }