blob: 2ad170e2177986f21d05bedf733a8c6f2337c6b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
const methodToMock = function() {
return "Original value";
};
exports.methodToMock = methodToMock;
exports.someProperty = "someProperty";
|