mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 03:09:29 +08:00
13 lines
No EOL
351 B
Text
13 lines
No EOL
351 B
Text
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = buildMatchMemberExpression;
|
|
|
|
var _matchesPattern = require("./matchesPattern");
|
|
|
|
function buildMatchMemberExpression(match, allowPartial) {
|
|
const parts = match.split(".");
|
|
return member => (0, _matchesPattern.default)(member, parts, allowPartial);
|
|
} |