mirror of
https://github.com/actions/setup-python.git
synced 2024-11-06 07:55:52 -05:00
27 lines
388 B
JavaScript
27 lines
388 B
JavaScript
// Copyright 2014 Simon Lydell
|
|
// X11 (“MIT”) Licensed. (See LICENSE.)
|
|
|
|
function u(url) {
|
|
return "code\n/*# sourceMappingURL=" + url + " */"
|
|
}
|
|
|
|
function read(x) {
|
|
return function() {
|
|
return x
|
|
}
|
|
}
|
|
|
|
function Throws(x) {
|
|
throw new Error(x)
|
|
}
|
|
|
|
function identity(x) {
|
|
return x
|
|
}
|
|
|
|
module.exports = {
|
|
u: u,
|
|
read: read,
|
|
Throws: Throws,
|
|
identity: identity
|
|
}
|