mirror of
https://git.mirrors.martin98.com/https://github.com/actions/setup-python
synced 2025-08-04 07:50:37 +08:00
14 lines
240 B
JavaScript
14 lines
240 B
JavaScript
// 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;
|
|
}
|
|
|
|
};
|