Additional parameter in asset for IE 9 and higher

Hello.

Can you tell me please how I can load JS file with gte IE 9 condition?

when I try to load js file with such construction:




public $jsOptions = ['condition' => 'gte IE 9']; 

    

    public $js = [

	'plugins/jQuery/jquery-2.1.1.min.js'

    ];

}



in HTML I get code:




<!--[if gte IE 9]>

<script src="/assets/d3e9e160/plugins/jQuery/jquery-2.1.1.min.js"></script>

<![endif]-->



but this is wrong output

the right must be




<!--[if gte IE 9]>[b]<!-->[/b]

    <script src="/assets/d3e9e160/plugins/jQuery/jquery-2.1.1.min.js"></script>

[b]<!--<![endif]-->[/b]



This code




<!--[if gte IE 9]>

<script src="/assets/d3e9e160/plugins/jQuery/jquery-2.1.1.min.js"></script>

<![endif]-->



is proper. Even Microsoft says so https://msdn.microsoft.com/en-us/library/ms537512.aspx