//
//  DateFormatterExtension.swift
//  ScanQR
//
//  Created by Dev. Mohmd on 10/19/20.
//  Copyright © 2020 Dev. Mohmd. All rights reserved.
//

import Foundation
import UIKit

extension DateFormatter {
    
    public func changeTimeZoneToGMT() {
        timeZone = .GMT
    }
}
