Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.

buildMatchMemberExpression.js 351B

12345678910111213
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.default = buildMatchMemberExpression;
  6. var _matchesPattern = require("./matchesPattern");
  7. function buildMatchMemberExpression(match, allowPartial) {
  8. const parts = match.split(".");
  9. return member => (0, _matchesPattern.default)(member, parts, allowPartial);
  10. }