Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- /**
- * Copyright (c) Facebook, Inc. and its affiliates.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE file in the root directory of this source tree.
- *
- * Provides utilities for handling draftjs keys.
- *
- * @emails oncall+draft_js
- *
- * @format
- */
- 'use strict';
-
- function notEmptyKey(key) {
- return key != null && key != '';
- }
-
- module.exports = {
- notEmptyKey: notEmptyKey
- };
|