murat onur
murat onur
I error to ⧗ input: Hello World! ✖ subject may not be empty [subject-empty] ✖ type may not be empty [type-empty] ✖ found 2 problems, 0 warnings ⓘ Get help:...
my solution ``` getToken(): string { return localStorage.getItem("accessToken"); } getTokenExpirationDate(token: string): Date { if (!token) token = this.getToken(); if (localStorage.getItem("expiry") === undefined) return null; const date = new Date(0); date.setUTCSeconds(+localStorage.getItem("expiry"));...
my usage ``` import { Injectable } from '@angular/core'; import { CanActivate, Router } from '@angular/router'; import { Angular2TokenService } from './angular2-token.service'; import { AuthService } from './auth.service'; @Injectable() export...
https://github.com/zinderud/scure-bip39/blob/main/src/wordlists/turkish.ts
[tr.txt](https://github.com/ethers-io/ethers.js/files/14640815/tr.txt) turkish file add
I couldn't find an official Turkish wordlist. but I tested the ones already written here https://github.com/zinderud/scure-bip39 and https://github.com/bitcoin/bips/pull/1359. I converted it to OWL-A format for etherjs and ran it for...
the letters (ü,ğ,ş,ı,ö) in Turkish caused an error when I tested with https://github.com/zinderud/scure-bip39. when I replaced these letters with (u,i,g,o,s) the first four letters of the words were similar. i...
there was an error due to one extra empty character. this has been fixed.