From 0e32da71c7540f50ef6bb4bf084043678daae28b Mon Sep 17 00:00:00 2001 From: Damjan Petrovic <146435419+pet210702@users.noreply.github.com> Date: Thu, 16 Oct 2025 20:20:21 +0200 Subject: [PATCH] Add MIT license header to feature flag utility script (#34833) Added the standard Meta Platforms, Inc. MIT license notice to the top of the feature flag comparison script to ensure compliance with repository licensing requirements and for code consistency. **No functional or logic changes were made to the code.** --- scripts/flags/flags.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scripts/flags/flags.js b/scripts/flags/flags.js index 1130ce80bb..a02b4d84b3 100644 --- a/scripts/flags/flags.js +++ b/scripts/flags/flags.js @@ -1,3 +1,9 @@ +/** + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ 'use strict'; const babel = require('@babel/register');