Skip to content

Instantly share code, notes, and snippets.

@DominusKelvin
Created November 24, 2020 22:56
Show Gist options
  • Save DominusKelvin/35457d48a80f9495443467c5eb3626b2 to your computer and use it in GitHub Desktop.
Save DominusKelvin/35457d48a80f9495443467c5eb3626b2 to your computer and use it in GitHub Desktop.
Code snippet for performance.mark
fn: async function(inputs, exits) {
performance.mark(‘start waiting’)
var wavesNGNPrice = await sails.helpers.fetch('https://waves-africa-api.herokuapp.com/ngn');
performance.mark(‘end waiting’)
performance.mark(‘waiting period’, ‘start waiting’, ‘end waiting’)
exits.success(wavesNGNPrice)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment