mirror of
https://github.com/halfrost/LeetCode-Go.git
synced 2025-07-07 09:54:57 +08:00
7 lines
185 B
JavaScript
7 lines
185 B
JavaScript
var prev = function(node, selector) {
|
|
if (selector && document.querySelector(selector) !== node.previousElementSibling) {
|
|
return null;
|
|
}
|
|
|
|
return node.previousElementSibling;
|
|
} |