You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cvm/src/util/device-name-from-path.js

9 lines
210 B
JavaScript

"use strict";
const matchOrError = require("../packages/match-or-error");
module.exports = function deviceNameFromPath(path) {
let [ name ] = matchOrError(/^\/dev\/(.+)$/, path).subMatches;
return name;
};