1
0
mirror of https://github.com/bitwarden/cli synced 2025-12-25 20:43:14 +00:00

add list items --url <url> command. resolves #32

This commit is contained in:
Kyle Spearrin
2018-10-13 22:27:33 -04:00
parent 4639aa613e
commit 73c597f649
7 changed files with 35 additions and 24 deletions

View File

@@ -1,11 +1,8 @@
import { DeviceType } from 'jslib/enums/deviceType';
import { I18nService } from 'jslib/abstractions/i18n.service';
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
import { Utils } from 'jslib/misc/utils';
// tslint:disable-next-line
const pjson = require('../../package.json');
@@ -78,10 +75,6 @@ export class NodePlatformUtilsService implements PlatformUtilsService {
return null as string;
}
getDomain(uriString: string): string {
return Utils.getHostname(uriString);
}
isViewOpen() {
return false;
}