Skip to content

Instantly share code, notes, and snippets.

@bachhm-dev
Created August 30, 2020 09:18
Show Gist options
  • Save bachhm-dev/a3b73c69890f47b4860af0341a6521bc to your computer and use it in GitHub Desktop.
Save bachhm-dev/a3b73c69890f47b4860af0341a6521bc to your computer and use it in GitHub Desktop.
import moment from "moment";
const format = function formatUnix(value) {
if (value) {
return moment(value).format("DD/MM/YYYY");
}
};
export default format;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment