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
"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; |
|
} |