* Copyright (c) 2013-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * *
(arg)
| 8716 | */ |
| 8717 | |
| 8718 | function makeEmptyFunction(arg) { |
| 8719 | return function () { |
| 8720 | return arg; |
| 8721 | }; |
| 8722 | } |
| 8723 | /** |
| 8724 | * This function accepts and discards inputs; it has no side effects. This is |
| 8725 | * primarily useful idiomatically for overridable function endpoints which |
no outgoing calls
no test coverage detected
searching dependent graphs…