From 0e55a7ed2f9d8e384b878388e8208bbeba562656 Mon Sep 17 00:00:00 2001 From: Ace Nassri Date: Wed, 21 Oct 2020 17:51:15 -0700 Subject: [PATCH] chore(functions): delete unused sample --- functions/concepts/loadable.js | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 functions/concepts/loadable.js diff --git a/functions/concepts/loadable.js b/functions/concepts/loadable.js deleted file mode 100644 index fb0ddaff81..0000000000 --- a/functions/concepts/loadable.js +++ /dev/null @@ -1,21 +0,0 @@ -// Copyright 2018 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -'use strict'; - -// [START functions_sample_module] -exports.getFileName = () => { - return __filename; -}; -// [END functions_sample_module]