import { getMinutes } from "https://deno.land/x/date_fns@v2.5.1/index.js";
Examples
// Get the minutes of 29 February 2012 11:45:05:
var result = getMinutes(new Date(2012, 1, 29, 11, 45, 5))
//=> 45
// Get the minutes of 29 February 2012 11:45:05: var result = getMinutes(new Date(2012, 1, 29, 11, 45, 5)) //=> 45