npm install helpers-pluginimport { register } from 'helpers-plugin'
register({ identifierName: 'customId' })identifierName is a needed field when you use methods like for example filter. Thanks
to this you don't have to write filter(item => item.id === id) You can just write filterById(id).