create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| export const maskString = ( | |
| value: any, | |
| mask: string, | |
| maskPatterns: Record<string, RegExp | ((char: string) => boolean)> | |
| ) => { | |
| value = value || ''; | |
| mask = mask || ''; | |
| maskPatterns = maskPatterns || {}; | |
| let maskedValue = ''; |
| // http://callmenick.com/post/slide-and-push-menus-with-css3-transitions | |
| (function(window) { | |
| 'use strict'; | |
| /** | |
| * Extend Object helper function. | |
| */ | |
| function extend(a, b) { |
| /* | |
| +-----------------------------------------------------------------+ | |
| | Created by Chirag Mehta - http://chir.ag/projects/ntc | | |
| |-----------------------------------------------------------------| | |
| | ntc js (Name that Color JavaScript) | | |
| +-----------------------------------------------------------------+ | |
| All the functions, code, lists etc. have been written specifically | |
| for the Name that Color JavaScript by Chirag Mehta unless otherwise |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"