mirror of
https://github.com/CamHenlin/MessagesForMacintosh.git
synced 2024-12-01 05:51:46 +00:00
14 lines
205 B
JavaScript
14 lines
205 B
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = identityFunc;
|
|
|
|
/**
|
|
* Returns the first argument it receives.
|
|
*/
|
|
function identityFunc(x) {
|
|
return x;
|
|
}
|