UNPKG

lml-main

Version:

This is now a mono repository published into many standalone packages.

14 lines (9 loc) 239 B
// Copyright 2011 Mark Cavage <mcavage@gmail.com> All rights reserved. module.exports = { newInvalidAsn1Error: function(msg) { var e = new Error(); e.name = 'InvalidAsn1Error'; e.message = msg || ''; return e; } };