You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
383 B
21 lines
383 B
2 years ago
|
"use strict";
|
||
|
|
||
|
Object.defineProperty(exports, "__esModule", {
|
||
|
value: true
|
||
|
});
|
||
|
exports.getValue = getValue;
|
||
|
|
||
|
var _isContentEditable = require("./isContentEditable");
|
||
|
|
||
|
function getValue(element) {
|
||
|
// istanbul ignore if
|
||
|
if (!element) {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
if ((0, _isContentEditable.isContentEditable)(element)) {
|
||
|
return element.textContent;
|
||
|
}
|
||
|
|
||
|
return element.value;
|
||
|
}
|