Skip to content

Mirrors array elements as pairs of object key/value with typings.

License

Notifications You must be signed in to change notification settings

terrysahaidak/mirror-to-object-pairs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mirror-to-object-pairs

npm

Mirrors array elements as pairs of object key/value with typings.

Installation

If you prefer npm:

npm i --save mirror-to-object-pairs

If yarn is your way to go:

yarn add mirror-to-object-pairs

Usage

To get started, just import package and provide it an array of keys. It will generate you paris in object with key/value of each element of passed array.

import mirror from 'mirror-to-object-pairs';

const pairs = mirror([
  'FIRST',
  'SECOND',
  'third',
]);

console.log(pairs.FIRST) // 'FIRST'
console.log(pairs.SECOND) // 'SECOND'
console.log(pairs.third) // 'third'

Usage with TS

import mirror from 'mirror-to-object-pairs';

const Screens = mirror([
  'Login',
  'App',
])

type Screens = keyof typeof Screens;

function navigate<T extends Screens>(screenName: T) {
  // some logic
}

navigate(screens.Login)

Library provides typings so it works perfectly with TypeScript projects.

License

MIT © Terry Sahaidak

About

Mirrors array elements as pairs of object key/value with typings.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published