Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

23 строки
472 B

  1. "use strict";
  2. /**
  3. * Copyright (c) Facebook, Inc. and its affiliates.
  4. *
  5. * This source code is licensed under the MIT license found in the
  6. * LICENSE file in the root directory of this source tree.
  7. *
  8. * @format
  9. *
  10. * @emails oncall+draft_js
  11. */
  12. var isElement = require("./isElement");
  13. function isHTMLBRElement(node) {
  14. if (!node || !node.ownerDocument) {
  15. return false;
  16. }
  17. return isElement(node) && node.nodeName === 'BR';
  18. }
  19. module.exports = isHTMLBRElement;