const myParseInt = (value: string): number => {
  return parseInt(value);
};

export { myParseInt };
