mirror of
https://github.com/denoland/deno.git
synced 2024-11-29 16:30:56 -05:00
0704454755
This commit adds ability to print deprecation notices for npm packages that have been marked as deprecated. Closes #24013
11 lines
160 B
JavaScript
11 lines
160 B
JavaScript
let value = 0;
|
|
|
|
export function setValue(newValue) {
|
|
value = newValue;
|
|
}
|
|
|
|
export function getValue() {
|
|
return value;
|
|
}
|
|
|
|
export const url = import.meta.url;
|