UNPKG

react-tinymce-mention

Version:

@Mention functionality for TinyMCE, built with React and Redux.

15 lines (11 loc) 303 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports["default"] = inputValid; var INPUT_THRESHOLD = 1; function inputValid(input) { var length = input.length; return length > INPUT_THRESHOLD || length === 0 ? true : false; } module.exports = exports["default"];