Skip to content

Instantly share code, notes, and snippets.

@jhaashutosh
Created January 11, 2023 14:12
Show Gist options
  • Save jhaashutosh/68e6234d45bc15e4829cf2d801d3a7a9 to your computer and use it in GitHub Desktop.
Save jhaashutosh/68e6234d45bc15e4829cf2d801d3a7a9 to your computer and use it in GitHub Desktop.
import moment from "moment";
const dateToString = (date) => {
const stringDate = moment(date).format("YYYY-MM-DD");
return stringDate;
};
export default dateToString;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment